-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
32 lines (32 loc) · 906 Bytes
/
popup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Scholarly Red Panda</title>
<style>
body {
width: 300px;
padding: 10px;
font-family: Arial, sans-serif;
}
.red-panda-icon {
width: 50px;
height: 50px;
margin-bottom: 10px;
}
#userId {
margin-top: 10px;
font-weight: bold;
}
</style>
</head>
<body>
<img src="images/red_panda_static.png" alt="Red Panda" class="red-panda-icon">
<h1>Scholarly Red Panda</h1>
<p id="message"></p>
<p id="userId">My ID: Loading...</p>
<a href="https://github.com/phunterlau/scholar_extension" target="_blank" class="github-link">Fork me on GitHub</a>
<script src="popup.js"></script>
</body>
</html>