This repository was archived by the owner on May 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpopup.html
46 lines (46 loc) · 2.91 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="popup.css">
</head>
<body><!--
--><input type="button" value="Close" autofocus><!--
--><form><!--
--><label title="The stored data will automatically be synced to any Chrome browser that the user is logged into, provided the user has sync enabled.">Chrome sync?<input name="sync" type="checkbox"></label><!--
--><a href="https://support.google.com/chrome/answer/165139" rel="external" title="support.google.com" target="_blank">learn more</a><!--
--><a href="https://chrome.google.com/sync" rel="external" title="chrome.google.com/sync" target="_blank">your synced data</a><!--
--><hr><!--
--><fieldset name="prfls"><legend>Customisable profiles</legend><!--
--><label>Foo<input name="prfl" type="radio" value="Foo"></label><!--
--><label>Bar<input name="prfl" type="radio" value="Bar"></label><!--
--><label>Baz<input name="prfl" type="radio" value="Baz"></label><!--
--><label>Qux<input name="prfl" type="radio" value="Qux"></label><!--
--><label>Quux<input name="prfl" type="radio" value="Quux"></label><!--
--></fieldset><!--
--><label title="Uncheck this before printing">Restyle?<input name="styl" type="checkbox"></label><!--
--><label class="r">Auto redirect TXT to HTML?<input name="rdrct" type="checkbox"></label><!--
--><hr><!--
--><fieldset name="stylrs"><!--
--><label>Keep Table of Contents open?<input name="kto" type="checkbox"></label><!--
--><label title="Hide page separators and chunks of white-space">Continuous presentation?<input name="continuous" type="checkbox"></label><!--
--><label>Fuzzy border<input name="fzzy" type="range" min="0" max="20"></label><!--
--><label>Font size<input name="fntsz" type="range" min="8" max="32"></label><!--
--><label class="r">Text selection<input name="slctn" type="color"></label><!--
--><label><input name="htmlbg" type="color">Background</label><!--
--><label class="r">Normal text<input name="nrml" type="color"></label><!--
--><label><input name="bodybg" type="color">Body content</label><!--
--><label class="r">Light text<input name="lght" type="color"></label><!--
--><label><input name="vha" type="color">Active, visited links</label><!--
--><label class="d"><input name="lnk" type="color">Inactive, unvisited links</label><!--
--><label class="r a">Bold links?<input name="lnkwght" type="checkbox"></label><!--
--><fieldset name="uls"><legend>Link underline</legend><!--
--><label>none<input name="ul" type="radio" value="none"></label><!--
--><label>solid<input name="ul" type="radio" value="solid"></label><!--
--><label>dashed<input name="ul" type="radio" value="dashed"></label><!--
--><label>dotted<input name="ul" type="radio" value="dotted"></label><!--
--></fieldset><!--
--></fieldset><!--
--></form><!--
--><script type="text/javascript" src="popup.js"></script><!--
--></body>
</html>