-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
38 lines (37 loc) · 939 Bytes
/
popup.html
File metadata and controls
38 lines (37 loc) · 939 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>popup</title>
<style>
.btn {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
display: inline-block;
margin: 0 auto;
font-size: 14px;
background: #1890ff;
color: #fff;
border: 1px solid #adadad;
border-radius: 2px;
cursor: pointer;
border-color: transparent;
text-align: center;
text-decoration-line: none;
}
.btn:hover {
background-color: #40a9ff;
}
</style>
</head>
<body style="width: 180px">
<div>已支持以下网站去浮层:</div>
<h5>CSDN,知乎</h5>
<div>
<a class="btn" href="mailto:sunranlb@qq.com" target="_blank">
如果想去掉其他网站的浮层,欢迎邮件我们^_^
</a>
</div>
<script type="text/javascript" src="js/popup.js"></script>
</body>
</html>