forked from ericu/jv-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
36 lines (36 loc) · 883 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
<html>
<head><title>jV enable manager</title>
<script src="util.js"></script>
<script src="popup.js"></script>
<style type="text/css">
div.cb_label_pair {
clear:both;
width:100%;
width:14em;
}
div.cb {
float:left;
clear:left;
}
label.label_class {
white-space:nowrap;
clear:right;
text-align:left;
}
</style>
</head>
<body>
<div class=cb_label_pair>
<div class=cb>
<input type="checkbox" id="global" class="cheat_global">
</div>
<label for="global" class=label_class>Enable jV</label>
</div>
<div class=cb_label_pair>
<div class=cb>
<input type="checkbox" id="local" class="cheat_local">
</div>
<label for="local" class=label_class>Enable jV for current tab</label>
</div>
</body>
</html>