-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoptions.html
More file actions
58 lines (46 loc) · 1.21 KB
/
options.html
File metadata and controls
58 lines (46 loc) · 1.21 KB
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
<!DOCTYPE html>
<html>
<head><title>Settings</title></head>
<body>
Text color:
<input id="should-change-text-color" type="checkbox" />
<input id="text-color" type="color" />
<br>
Background color:
<input id="should-change-background-color" type="checkbox" />
<input id="background-color" type="color" />
<br>
Vertical:
<input id="should-vertical" type="checkbox" />
<br>
Highlight On Hover:
<select id="should-highlight-on-hover">
<option value="paragraph">Paragraph</option>
<option value="word">Word</option>
<option value="nothing">Nothing</option>
</select>
<br>
Paint last letter:
<input id="should-paint-last-letter" type="checkbox" />
<br>
Animate last letter:
<input id="should-animate-last-letter" type="checkbox" />
<br>
Paint first letter:
<input id="should-paint-first-letter" type="checkbox" />
<br>
Animate first letter:
<input id="should-animate-first-letter" type="checkbox" />
<br>
Letter Spacing:
<input id="should-letter-spacing" type="checkbox" />
<input id="letter-spacing" type="text" />
<br>
Disable running on all page:
<input id="disable-running-on-all-page" type="checkbox" />
<br>
<div id="status"></div>
<button id="save">Save</button>
<script src="options.js"></script>
</body>
</html>