-
Notifications
You must be signed in to change notification settings - Fork 23
/
options.html
62 lines (62 loc) · 1.81 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
<!DOCTYPE html>
<html>
<head>
<title>Web Timer Options</title>
<link rel="stylesheet" href="options.css" />
<script src="options.js"></script>
</head>
<body>
<div id="header">
<h1>Web Timer Options</h1>
<div id="info">
<span>
Love Web Timer?
<a
target="_blank"
href="https://chrome.google.com/webstore/detail/web-timer/efkkjffdefaaioagghcaflicdajfhceo/reviews"
>Leave a review!</a
>
</span>
</div>
</div>
<div id="settings">
<table>
<tbody>
<tr>
<th>
Sites to Ignore<br />
(one per line)
</th>
<td><textarea id="blacklist"></textarea></td>
<td id="blacklist-description" class="description">
Web Timer will not track any sites you put on this list. Any
existing data for sites on the list will be removed.
</td>
</tr>
<tr>
<th>Chart Display Limit</th>
<td>
<label>Show Top</label>
<input id="chart_limit" type="text" size="2" maxlength="2" />
<label>Sites</label>
</td>
<td id="limit-description" class="description">
Sites below the limit will be grouped into the "Other" category.
</td>
</tr>
<tr>
<th>Storage</th>
<td><button id="clear-data">Clear Data</button></td>
<td id="storage-description" class="description">
There is no way to recover your data once you delete it.
</td>
</tr>
</tbody>
</table>
</div>
<div id="footer">
<button id="save-button">Save</button>
<span id="status"></span>
</div>
</body>
</html>