-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoptions.html
61 lines (55 loc) · 1.74 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
<!doctype html>
<html>
<head>
<title>__MSG_appName__ Options</title>
<meta charset="UTF-8" />
<script src="i18n.js"></script>
<script src="options.js"></script>
</head>
<body>
<h1>Options for the <i>__MSG_appName__</i> Add-on</h1>
<div style="margin: 1ex">
<div
style="
display: inline-grid;
gap: 2px 1ex;
grid-template-columns: minmax(auto, auto) 300px minmax(auto, auto);
"
>
<u>__MSG_settingHeading__</u>
<u>__MSG_valueHeading__</u>
<u>__MSG_descriptionHeading__</u>
<label for="rcbf-allow-box">__MSG_allowRegexp__:</label>
<textarea id="rcbf-allow-box"></textarea>
<span>__MSG_allowDescription__</span>
<label for="rcbf-block-box">__MSG_blockRegexp__:</label>
<textarea id="rcbf-block-box"></textarea>
<span>__MSG_blockDescription__</span>
<label for="rcbf-scan-box">__MSG_scanRegexp__:</label>
<textarea id="rcbf-scan-box"></textarea>
<span>__MSG_scanDescription__</span>
</div>
<div>
<input type="checkbox" id="rcbf-block-first-pref" />
<label for="rcbf-block-first-pref">__MSG_checkBlockFirst__</label>
</div>
<div>
<input type="checkbox" id="rcbf-debug" />
<label for="rcbf-debug">__MSG_debugLogging__</label>
</div>
</div>
<div style="margin: 1ex">
<button id="btn_save">Save</button>
<button id="btn_reset">Reset</button>
<button id="btn_cancel">Cancel</button>
</div>
<h1>__MSG_examplesTitle__</h1>
<ul>
<li>__MSG_matchEverything__: <b>.*</b></li>
<li>
__MSG_matchFolders__:
<b>__MSG_matchFolderExamples__</b>
</li>
</ul>
</body>
</html>