-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
popup.html
67 lines (55 loc) · 1.59 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
67
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
body {
background: #F4F4F4;
background-image: url(./images/popup.png);
background-repeat: no-repeat;
background-position: bottom left;
width: 318px;
text-align: center;
background-size: 40%;
font-size: 12px;
overflow-x: hidden;
}
button {
width: 160px;
height: 32px;
margin-bottom: 8px;
margin-left: 128px;
font-size: 13px;
}
.status-detail {
white-space: pre-line;
}
.recheck-link {
position: absolute;
top: 8px;
right: 8px;
}
.downloads-link {
position: absolute;
top: 8px;
left: 8px;
}
</style>
</head>
<body>
<div>
<div style="font-size:32px" id="statusIcon"></div>
<a href="#" id="allDownloads" title="This will open your LRR server's Minion Console." class="downloads-link">
All Downloads</a>
<a href="#" id="recheckTab" title="Ask the server for this Tab again." class="recheck-link">Recheck?</a>
<div style="font-weight: 600; font-size: 18px;">This tab is<span id="statusMsg"></span></div>
<span id="statusDetail" class="status-detail">The status message goes here.</span>
<hr>
<button id="downloadUrl" title="Queue this tab's URL for downloading on your LRR server.">Download this tab</button>
<button id="downloadLeft">Queue tabs on the left</button>
<button id="downloadRight">Queue tabs on the right</button>
<button id="openSettings">Open extension settings</button>
</div>
<script src="popup.js"></script>
</body>
</html>