-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
100 lines (100 loc) · 5.78 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
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>DLsite フィルター</title>
<script src="loadOptions.js"></script>
<script src="options.js"></script>
</head>
<body>
<h1>DLsite フィルター オプション</h1>
<p>
<label><input type="radio" name="tab" value="works" checked>作品</label>
<label><input type="radio" name="tab" value="tags">タグ</label>
<span id="notification" style="margin: 0 1em; font-size: smaller"></span>
</p>
<dl id="tab_works" class="tab">
<dt>設定スロット</dt>
<dd>
<label><input type="radio" name="work_slot" value="0" checked>0</label>
<label><input type="radio" name="work_slot" value="1">1</label>
<label><input type="radio" name="work_slot" value="2">2</label>
<label><input type="radio" name="work_slot" value="3">3</label>
<label><input type="radio" name="work_slot" value="4">4</label>
<label><input type="radio" name="work_slot" value="5">5</label>
<label><input type="radio" name="work_slot" value="6">6</label>
<label><input type="radio" name="work_slot" value="7">7</label>
<label><input type="radio" name="work_slot" value="8">8</label>
<label><input type="radio" name="work_slot" value="9">9</label>
</dd>
<dt>モード</dt>
<dd>
<label><input type="checkbox" name="work_mode" value="work_border">ボーダー</label>
<label><input type="checkbox" name="work_mode" value="work_background">背景色</label>
<label><input type="checkbox" name="work_mode" value="work_opacity">色を薄くする</label>
<label><input type="checkbox" name="work_mode" value="work_hide">隠す</label>
<br>
<label><input type="color" name="work_borderColor">ボーダー色</label>
<label><input type="color" name="work_backgroundColor">背景色</label>
</dd>
<dt>対象作者名(改行区切り 完全一致)</dt>
<dd>
<textarea id="makerNames" cols="20" rows="20"></textarea>
</dd>
</dl>
<dl id="tab_tags" class="tab">
<dt>設定スロット</dt>
<dd>
<label><input type="radio" name="tag_slot" value="0" checked>0</label>
<label><input type="radio" name="tag_slot" value="1">1</label>
<label><input type="radio" name="tag_slot" value="2">2</label>
<label><input type="radio" name="tag_slot" value="3">3</label>
<label><input type="radio" name="tag_slot" value="4">4</label>
<label><input type="radio" name="tag_slot" value="5">5</label>
<label><input type="radio" name="tag_slot" value="6">6</label>
<label><input type="radio" name="tag_slot" value="7">7</label>
<label><input type="radio" name="tag_slot" value="8">8</label>
<label><input type="radio" name="tag_slot" value="9">9</label>
</dd>
<dt>モード</dt>
<dd>
<dl>
<dt>タグ</dt>
<dd>
<label><input type="checkbox" name="tag_mode" value="tag_border">ボーダー</label>
<label><input type="checkbox" name="tag_mode" value="tag_background">背景色</label>
<label><input type="checkbox" name="tag_mode" value="tag_opacity">色を薄くする</label>
<label><input type="checkbox" name="tag_mode" value="tag_hide">隠す</label>
<br>
<label><input type="color" name="tag_borderColor">ボーダー色</label>
<label><input type="color" name="tag_backgroundColor">背景色</label>
</dd>
<dt>該当作品</dt>
<dd>
<label><input type="checkbox" name="tag_mode" value="tag_work_border">ボーダー</label>
<label><input type="checkbox" name="tag_mode" value="tag_work_background">背景色</label>
<label><input type="checkbox" name="tag_mode" value="tag_work_opacity">色を薄くする</label>
<label><input type="checkbox" name="tag_mode" value="tag_work_hide">隠す</label>
<br>
<label><input type="color" name="tag_work_borderColor">ボーダー色</label>
<label><input type="color" name="tag_work_backgroundColor">背景色</label>
</dd>
<dt>非該当作品</dt>
<dd>
<label><input type="checkbox" name="tag_mode" value="tag_noWork_border">ボーダー</label>
<label><input type="checkbox" name="tag_mode" value="tag_noWork_background">背景色</label>
<label><input type="checkbox" name="tag_mode" value="tag_noWork_opacity">色を薄くする</label>
<label><input type="checkbox" name="tag_mode" value="tag_noWork_hide">隠す</label>
<br>
<label><input type="color" name="tag_noWork_borderColor">ボーダー色</label>
<label><input type="color" name="tag_noWork_backgroundColor">背景色</label>
</dd>
</dl>
</dd>
<dt>対象タグ(改行区切り 完全一致)</dt>
<dd>
<textarea id="tags" cols="20" rows="8"></textarea>
</dd>
</dl>
</body>
</html>