-
Notifications
You must be signed in to change notification settings - Fork 70
/
popup.html
58 lines (58 loc) · 1.55 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
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=300, height=150">
<title>蜜罐检测插件</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
}
#container {
width: 300px;
height: 150px;
border: 1px solid #ccc;
border-radius: 5px;
padding: 15px;
display: flex;
flex-direction: column;
align-items: center;
}
#counter {
font-size: 24px;
margin: 10px 0;
}
#status {
margin: 10px 0;
}
a {
color: #06c;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
#toggleButton {
padding: 10px 20px;
margin-top: 10px;
cursor: pointer;
}
</style>
</head>
<body>
<div id="container">
<h1>蜜罐检测插件</h1>
<div id="counter">已拦截蜜罐数量: 0</div>
<button id="toggleButton">启动插件</button>
<div id="status">当前状态: 已启动</div>
<a href="https://github.com/cnrstar/anti-honeypot">版本 V1.01</a>
</div>
<script src="popup.js"></script>
</body>
</html>