-
Notifications
You must be signed in to change notification settings - Fork 2
/
options.html
44 lines (38 loc) · 983 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>My Test Extension Options</title>
<style>
body: { padding: 10px; }
</style>
</head>
<body>
<form action="#" id="options-form">
<div>
<label for="playback-rate">
Playback rate:
</label>
<select id="playback-rate">
<option value="0.25">0.25</option>
<option value="0.5">0.5</option>
<option value="1" selected="selected">1</option>
<option value="1.25">1.25</option>
<option value="1.5">1.5</option>
<option value="2">2</option>
</select>
</div>
<div>
<label for="hover-time">
Hover delay:
</label>
<input type="number" name="hover-time" id="hover-time" value="370" />ms
</div>
<button type="submit" id="save">Save</button>
<button id="reset-to-default" value="Reset to Default">
Reset to default
</button>
</form>
<div id="status"></div>
<script src="options.js"></script>
</body>
</html>