-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathoptions.html
52 lines (51 loc) · 1.14 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
<!DOCTYPE html>
<html>
<head>
<title>Video Speed Control Options</title>
<style>
body
{
margin: 45px;
font-size: 20px;
}
.select-style{
font-size: 15px;
border: 1px solid #AAA;
background:#EEE;
width: 150px;
padding: 5px 8px;
}
.btn {
width: 120px;
color: #072647;
font-size: 18px;
background: #c6cdd1;
padding: 5px 10px 5px 10px;
}
</style>
</head>
<body>
Increment Value:
<select id="increment" class="select-style">
<option value="0.01">0.01</option>
<option value="0.1">0.1</option>
<option value="0.2">0.2</option>
<option value="0.5">0.5</option>
</select>
<br /><br />
Key Combination:
<select id="keyCombo" class="select-style">
<option value="pgud">PgUp/PgDn</option>
<option value="udar">Up/Down Arrows</option>
<option value="lrar">Left/Right Arrows</option>
</select>
<br /><br />
<span>Blacklisted Sites (do not show on the following domains):</span>
<br/>
<textarea name="blacklist" id="blacklist">vine.com
</textarea>
<div id="status"></div>
<button id="save" class="btn">Save</button>
<script src="options.js"></script>
</body>
</html>