forked from greatsuspender/thegreatsuspender
-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
39 lines (37 loc) · 1011 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
37
38
39
<!doctype html>
<html>
<head>
<link type="text/css" href="popup.css" rel="stylesheet">
<script type="text/javascript" src="popup.js"></script>
</head>
<body>
<ul id="options">
<li class="menuOption" id="suspendOne" title="Suspend this tab">
<div class="button">
<img src="suspend_one.png" />
</div>
<div class="buttonLabel">
Suspend this tab
</div>
</li>
<li class="menuOption" id="suspendAll" title="Suspend all tabs">
<div class="button">
<img src="suspend_all.png" />
</div>
<div class="buttonLabel">Suspend all tabs</div>
</li>
<li class="menuOption" href="#" id="unsuspendAll" title="Reload all tabs">
<div class="button">
<img src="reload_all.png" />
</div>
<div class="buttonLabel">Reload all tabs</div>
</li>
<li class="menuOption" id="settings" title="Settings">
<div class="button">
<img src="settings.png" />
</div>
<div class="buttonLabel">Settings</div>
</li>
</ul>
</body>
</html>