-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoption.html
50 lines (47 loc) · 1.11 KB
/
option.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>设置TabSaver</title>
<style>
body { font-size: 14px; line-height:18px; }
td { font-size:12px; line-height:30px; }
dd, dl, dt { padding:0; margin:0; list-style:none; }
dd { padding-left:20px; }
dt {
margin:10px 0 3px 0;
background:#eee;
height:30px;
line-height:30px;
border-top:2px solid #666;
}
a:link { color: #0078B6; text-decoration: none; }
a:visited { color: #0078B6; }
a:hover { text-decoration: underline; }
a:active { color: #0078B6; }
i, del {
text-decoration:none;
font-style:normal;
font-size:12px;
color:#0078B6;
cursor:pointer;
}
</style>
</head>
<body>
<table>
<tr>
<td valign="top">保存记录数</td>
<td>
<select id="RecordCount">
</select>
</td>
<td valign="top">关闭浏览器时自动记录</td>
<td valign="top">打开浏览器时自动恢复</td>
</tr>
</table>
<div id="ResultList"></div>
<script src="conf.js" type="text/javascript"></script>
<script src="option.js" type="text/javascript"></script>
</body>
</html>