-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
66 lines (66 loc) · 1.3 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!doctype html>
<html>
<head>
<title>Tab Counter's Popup</title>
</head>
<body align="center">
<p id="head"><b>TAB COUNTER</b></p>
<table align="center">
<tr>
<td id="opened"></td>
<td id="closed"></td>
</tr>
</table>
<p id="title"><b>Most Recent:</b></p>
<table align="center">
<tr>
<td></td>
<td id="mid">Opened</td>
<td>Closed</td>
</tr>
<tr>
<td>Time:</td>
<td id="oTime"></td>
<td id="cTime"></td>
</tr>
<tr>
<td>Date:</td>
<td id="oDate"></td>
<td id="closeDate"></td>
</tr>
</table>
<button id="down">Download Data as JSON</button>
<button id="tsv">Download Hourly Average as TSV</button>
<button id="graph">View Graph</button>
<script src="popup.js"></script>
</body>
<style>
html {
color: #2084A4;
width: 260px;
text-align: center;
}
p {
font-family: Courier;
}
table {
border: 1px #2084A4;
border-style: dashed none;
}
td {
font-family: Courier;
padding: 5px;
}
#head {
font-size: 15px;
}
#title {
font-size: 13px;
}
button {
margin-top: 12px;
font-family: Courier;
color: #2084A4;
}
</style>
</html>