-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpopup.html
50 lines (50 loc) · 828 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
47
48
49
50
<!doctype html>
<html lang="cn">
<head>
<meta charset="UTF-8">
<style>
body{
font: 14px "PingFangSC-Light", "Segoe UI", "Microsoft YaHei";
width: 220px;
margin: 0;
}
dl{
margin: 15px;
}
dl::after{
content: "";
display: block;
clear: both;
}
dt{
float: left;
}
dd{
text-align: right;
}
#bottom{
background: #f7f7f7;
border-top: 1px solid #e3e3e3;
color: #888;
font-size: 10px;
line-height: 3em;
margin: 0;
text-align: center;
}
</style>
</head>
<body>
<dl>
<dt>播放记录</dt>
<dd id="historyCount"></dd>
<dt>备选视频数</dt>
<dd id="videosCount"></dd>
<dt>占用空间</dt>
<dd id="storageUsage"></dd>
</dl>
<p id="bottom">
<a id="clearStorage">清除缓存</a>
</p>
<script src="popup.js"></script>
</body>
</html>