-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
46 lines (40 loc) · 947 Bytes
/
popup.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<style>
body { font-size:12px; }
button {
margin-top:5px;
color:#333;
width:120px;
height:30px;
font-size:14px;
cursor:pointer;
font-family:"Microsoft YaHei" SimHei;
background:#bbb;
border:3px solid #666;
-webkit-border-radius:5px;
-moz-border-radius:5px;
-webkit-transition:all .3s ease-in;
}
button:hover {
background:#fff;
border-color:#333;
}
button:active {
background:#eee;
}
.op { text-align:right; margin-top: 5px;}
.msg { font-family:arial; }
</style>
</head>
<body>
<div id="Msg" class="msg">TabSaver 0.8</div>
<button class="save" id="SaveTab">保存Tab</button>
<button class="save" id="RestoreTab">恢复Tab</button>
<div class="op"><a id="Option" href="#">选项</a></div>
<script src="conf.js" type="text/javascript"></script>
<script src="popup.js" type="text/javascript"></script>
</body>
</html>