-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathoptions.html
60 lines (60 loc) · 2.12 KB
/
options.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Options - My Extensions</title>
<style type="text/css" media="all"><!-- @import url("css/css.css"); --></style>
<script type="text/javascript" src="js/core-lite.js"></script>
<script type="text/javascript" src="js/core.chrome.js"></script>
<script type="text/javascript" src="js/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="js/js.js"></script>
<script type="text/javascript" src="js/options.js"></script>
</head>
<body>
<div id="wrapper">
<div id="empty" class="hide">
<h3>No extensions defined yet ;(</h3>
<p>Use the field below to add one, or click <strong>find your extensions</strong> to find them all easier.</p>
</div>
<div id="table-container"><!-- extensions will be here --></div>
<div id="form">
<table>
<thead>
<tr>
<th>Enter Extension ID:</th>
<td>
<input placeholder="Paste extension ID here" type="text" id="hash" style="width: 14em;" name="hash" value=""><button id="button">+ Add</button> - or - <span class="foo">Find your extensions</span>
</td>
</tr>
</thead>
<tbody>
<tr>
<th>Notify (badge) on: </th>
<td><label><input type="checkbox">new rating</label> <label><input type="checkbox">new review</label></td>
</tr>
<tr>
<th>Notify (desktop) on: </th>
<td>
<!-- Not for now, TODO: do make it work -->
<span class="hide"><label><input type="checkbox">new rating</label> </span>
<label><input type="checkbox">new review</label>
</td>
</tr>
<tr>
<th>Update every: </th>
<td><select id="interval"></select></td>
</tr>
<tr>
<th>Compact view:</th>
<td><label><input type="checkbox"></label></td>
</tr>
<tr>
<th>Ignore reviews from:</th>
<td><label><input type="text" name="handle" id="field-handle" style="width: 14em;" placeholder="Yourself maybe?"></label></td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>