-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
51 lines (51 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
#main > div{
margin-bottom: 10px;
padding-bottom: 10px;
border-bottom: 1px solid #ddd;
}
#main > div > .line{
margin-bottom: 5px;
}
</style>
<title>Title</title>
</head>
<body>
<div id="main">
<div>
<label>
<span i18n:text="openNewTabUrlLabel"></span>
<input type="text" id="openNewTabUrl" />
</label>
<button
class="default" id="saveOpenNewTabUrl"
i18n:text="save"
></button>
</div>
<div>
<div class="line">
<label>
<span i18n:text="judgeSensitivityLabel"></span>
<input type="number" id="judgeSensitivity" />
</label>
</div>
<div class="line">
<button
class="default" id="autoGenerate"
i18n:text="autoGenerate"
></button>
<button
class="default" id="saveJudgeSensitivity"
i18n:text="save"
></button>
</div>
</div>
</div>
<script src="/common.js"></script>
<script src="/options.js"></script>
</body>
</html>