-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
54 lines (44 loc) · 1.46 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
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="css/style.css">
<script type="text/javascript" src="js/options.js"></script>
</head>
<body class="options">
<header>Hacker news settings</header>
<div id="container">
<fieldset>
<!-- Notification settings -->
<legend>Notifications</legend>
<div>
<label for="showNotifications">Show notifications</label>
<input id="showNotifications" type="checkbox">
</div>
<div>
<label>Check for updates every</label>
<select id="updateInterval">
<option value="10000">10 seconds</option>
<option value="60000">minute</option>
<option value="300000">5 minutes</option>
<option value="600000">10 minutes</option>
<option value="1800000">half hour</option>
<option value="3600000">hour</option>
</select>
</div>
<div>
<label>Display notification</label>
<select id="notificationDisplayTime">
<option value="5000">for 5 seconds</option>
<option value="10000">for 10 seconds</option>
<option value="300000">in 1 minute</option>
<option value="0">until closed manually</option>
</select>
</div>
</fieldset>
</div>
<footer>
created by <a href="http://github.com/noahlaux/" target="_blank">Noah Laux</a>
| <a href="https://github.com/noahlaux/Chrome-HK-news/issues" target="_blank">report issues</a>
</footer>
</body>
</html>