-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
executable file
·36 lines (36 loc) · 948 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
33
34
35
36
<!doctype html>
<html>
<head>
<title>G Photo Album List</title>
<style>
body {
font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
font-size: 100%;
}
#status {
white-space: pre;
text-overflow: ellipsis;
overflow: hidden;
width: 600px;
}
.dataNumItems {
font-style: italic;
font-size: 9pt;
}
.dataDateStr {
font-style: italic;
font-size: 9pt;
}
</style>
<!--
- JavaScript and HTML must be in separate files:
- [1]: https://developer.chrome.com/extensions/contentSecurityPolicy
-->
<script src="popup.js"></script>
</head>
<body>
<!-- everything gets added programmatically -->
<div id="status"> </div>
<table id="albumTable"> </table>
</body>
</html>