forked from phaistonian/MyExtensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
executable file
·74 lines (58 loc) · 2.19 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; 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/js.js"></script>
<script type="text/javascript">
</script>
</head>
<body onload="Ext.initialize()">
<div id="wrapper">
<div id="empty" style="display:none;"><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 cellspacing="0">
<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" onclick="Ext.add( $('hash').value ); ">+ Add</button> - or - <span onclick="Ext.find()" class="foo">Find your extensions</span>
</td>
</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 style="display: none;"><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>