forked from Cimbali/CleanLinks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
92 lines (83 loc) · 2.71 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
label {
display: block;
margin: 1ex 0;
}
label span {
display:inline-block;
min-width: 20em;
}
input[type=number] {
width: 5em;
}
input[type=text], textarea {
width:80%;
}
textarea {
height:10em;
}
</style>
</head>
<body>
<h3>Options</h3>
<h4>Link cleaning</h4>
<label i18n_title="skipwhen_tooltip"><span i18n_text="skipwhen_title"></span>
<br /><input type="text" name="skipwhen" value="" />
</label>
<label i18n_title="remove_tooltip"><span i18n_text="remove_title"></span>
<br /><input type="text" name="remove" value="" />
</label>
<label i18n_title="skipdoms_tooltip"><span i18n_text="skipdoms_title"></span>
<br /><textarea name="skipdoms"></textarea>
</label>
<label i18n_title="ignhttp_tooltip"><span i18n_text="ignhttp_title"></span>
<input type="checkbox" name="ignhttp" value="" />
</label>
<h4>Features</h4>
<label i18n_title="evdm_tooltip"><span i18n_text="evdm_title"></span>
<input type="checkbox" name="evdm" value="" />
</label>
<label i18n_title="switchToTab_tooltip"><span i18n_text="switchToTab_title"></span>
<input type="checkbox" name="switchToTab" value="" />
</label>
<label i18n_title="cbc_tooltip"><span i18n_text="cbc_title"></span>
<input type="checkbox" name="cbc" value="" />
</label>
<label i18n_title="progltr_tooltip"><span i18n_text="progltr_title"></span>
<input type="checkbox" name="progltr" value="" />
</label>
<label i18n_title="httpomr_tooltip"><span i18n_text="httpomr_title"></span>
<input type="checkbox" name="httpomr" value="" />
</label>
<label i18n_title="gotarget_tooltip"><span i18n_text="gotarget_title"></span>
<input type="checkbox" name="gotarget" value="" />
</label>
<label i18n_title="textcl_tooltip"><span i18n_text="textcl_title"></span>
<input type="checkbox" name="textcl" value="" />
</label>
<label><span i18n_text="cltrack_title"></span>
<input type="checkbox" name="cltrack" />
</label>
<label i18n_title="repdelay_tooltip"><span i18n_text="repdelay_title"></span>
<input type="number" name="repdelay" value="" />
</label>
<h4>Display</h4>
<label><span i18n_text="highlight_title"></span>
<input type="checkbox" name="highlight" value="" />
</label>
<label i18n_title="hlstyle_content"><span i18n_text="hlstyle_title"></span>
<br /><input type="text" name="hlstyle" i18n_title="hlstyle_emptytext" />
</label>
<label><span i18n_text="notifications_title"></span>
<input type="checkbox" name="notifications" value="" />
</label>
<h4>Reset</h4>
<p><button name="reset" i18n_text="reset_label" i18n_title="reset_tooltip"></button></p>
<script src="cleanlink.js"></script>
<script src="options.js"></script>
</body>
</html>