-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
67 lines (66 loc) · 1.91 KB
/
options.html
File metadata and controls
67 lines (66 loc) · 1.91 KB
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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="options_styles.css" />
<title>一括英単語検索 - Option</title>
</head>
<body>
<div id="main">
<h1>一括英単語検索</h1>
<hr />
<h2>辞書</h2>
<ul id="dictList"></ul>
<h2>Diff検索</h2>
<ul id="diffList"></ul>
<h2>履歴</h2>
<div id="selectHistoryNum">
<span>履歴保存件数</span>
<span>
<select name="historyNum" id="historyNum">
<option value="30">30</option>
<option value="50">50</option>
<option value="100">100</option>
<option value="200">200</option>
<option value="200">1000</option>
</select>
件
</span>
</div>
<div id="deleteAll">
<div id="deleteBox">
<svg
xmlns="http://www.w3.org/2000/svg"
height="16px"
width="16px"
viewBox="0 0 24 24"
fill="#111"
>
<path d="M0 0h24v24H0V0z" fill="none" />
<path
d="M16 9v10H8V9h8m-1.5-6h-5l-1 1H5v2h14V4h-3.5l-1-1zM18 7H6v12c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7z"
/>
</svg>
<span>全削除</span>
</div>
</div>
<div id="showHistoryNum"></div>
<ul id="history"></ul>
</div>
<footer>
<p>
© 2021
<a
target="_blank"
rel="noopener noreferrer"
href="https://github.com/hellonagi/chrome-woords"
>hellonagi</a
>
</p>
<p>Licensed under GNU AGPL v3</p>
</footer>
<script src="./options_script.js"></script>
</body>
</html>