-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
65 lines (60 loc) · 2.48 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
63
64
65
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<form>
<label>Enable Keep View
<input type="checkbox" id="ViewTracking" class="options">
<br>
<sub>Attempt to keep contents in view after zoom? This will take the page element at the <i>Tracking Location</i> and keep it in view after zooming.</sub>
</label>
<br>
<br>
<label>Track Location
<select id="TrackElement" class="options">
<option value="top">Top</option>
<option value="center">Center</option>
<option value="natural">"Natural"</option>
</select>
<br>
<sub>Determines which part of your screen <i>Keep View</i> will try to keep on your screen following the zoom.</sub>
</label>
<br>
<br>
<label>Enable reflow on Double Tap Zoom?
<input type="checkbox" id="TapZoom" class="options">
<br>
<sub>Reflow page after using double tap to zoom?</sub>
</label>
<br>
<br>
<label>Margin Size:
<input type="number" id="Margin" step="5" class="options">px.
<br>
<sub>Additional margin in pixels to add to the side. NOTE: all values other than numbers will be ignored</sub>
</label>
<br>
<br>
<label>Enabled for the following tags:</label>
<br>
<label>p <input type="checkbox" id="p" class="options"></label>
<label>li <input type="checkbox" id="li" class="options"></label>
<label>ul <input type="checkbox" id="ul" class="options"></label>
<label>a <input type="checkbox" id="a" class="options"></label>
<label>h1 <input type="checkbox" id="h1" class="options"></label>
<label>h2 <input type="checkbox" id="h2" class="options"></label>
<label>h3 <input type="checkbox" id="h3" class="options"></label>
<label>h4 <input type="checkbox" id="h4" class="options"></label>
<label>h5 <input type="checkbox" id="h5" class="options"></label>
<label>h6 <input type="checkbox" id="h6" class="options"></label>
<label>tr <input type="checkbox" id="tr" class="options"></label>
<label>td <input type="checkbox" id="td" class="options"></label>
<label>th <input type="checkbox" id="th" class="options"></label>
<br>
<h3 id="saved" style="opacity: 0;">Saved!</h3>
</form>
<script src="options.js"></script>
</body>
</html>