-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
28 lines (25 loc) · 1023 Bytes
/
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
<meta charset="UTF-8">
<meta language="zh-cn">
<title>Options</title>
<form name="options" action="#">
<div class="item">
<label for="max_count">保留数量</label>
<input type="number" name="max_count" id="max_count">
</div>
<!-- <div class="item">-->
<!-- <label for="empty_first">优先移除空标签</label>-->
<!-- <input id="empty_first" type="checkbox" name="empty_first">-->
<!-- </div>-->
<div class="item">
<label for="mode">mod</label>
<input id="mode" type="radio" name="mode" value="rnu" checked disabled> 最少使用
<!-- <input type="radio" name="mode" value="lf"> 左侧优先-->
</div>
<div class="item">
<label for="debug">调试</label>
<input id="debug" type="checkbox" name="debug">
</div>
<button type="button" id="save_options">保存</button>
</form>
<div id="item-list"></div>
<script type="text/javascript" src="options.js"></script>