-
Notifications
You must be signed in to change notification settings - Fork 6
/
popup.html
57 lines (56 loc) · 1.18 KB
/
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
51
52
53
54
55
56
57
<html><head>
<meta charset="UTF-8">
<style>
@media (prefers-color-scheme: dark) {
body {
background: #111;
color: #eee;
}
}
body {
width:15em;
}
body,hr,ul {
margin: 0;
}
ul {
list-style: none;
padding: 0;
}
li {
border: none;
position: relative;
height: 30px;
font-size: 20px;
text-align: center;
display: block;
outline: none;
}
li:hover {
background-color: #ec6;
}
a {
display: block;
color: #379;
text-decoration: none;
white-space: nowrap;
}
</style>
</head>
<body>
<ul>
<li><a id="power"><input type="checkbox">开★关</input></a></li>
<hr>
<li><a id="mvList">无捕获媒体</a></li>
<li><a href="./options.html" target="_blank">选项...</a></li>
<hr>
<li><a id="cacheMV"><input type="checkbox">强制缓存视频切片</input></a></li>
<li><a id="clearCache">清除所有站点缓存</a></li>
<hr>
<li><a href="https://bbs.kafan.cn/thread-2162743-1-1.html" target="_blank">BUG 反馈</a></li>
<li><a href="./donate.html">❤️打赏-微信</a></li>
<li><a href="https://raw.githubusercontent.com/xinggsf/Adblock-Plus-Rule/master/metal-h5-latest.crx" target="_blank">查看更新</a></li>
</ul>
</body>
<script type="text/javascript" src="./popup.js"></script>
</html>