-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
55 lines (55 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head>
<title>Fingerprint Checker</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 0;
padding: 20px;
width: 300px;
height: 200px;
}
h1 {
font-size: 18px;
margin-bottom: 10px;
}
p {
font-size: 14px;
color: #555;
text-align: center;
margin-bottom: 20px;
}
button {
padding: 10px 20px;
font-size: 14px;
background-color: #0078d7;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
margin-bottom: 10px;
}
button:hover {
background-color: #0053a0;
}
#result {
margin-top: 20px;
font-size: 16px;
font-weight: bold;
}
</style>
</head>
<body>
<h1>Fingerprint Checker</h1>
<p>Detects fingerprinting behavior</p>
<button id="checkBtn">Check Fingerprint</button>
<button id="downloadBtn">Download Logs</button>
<div id="result"></div>
<script src="popup.js"></script>
</body>
</html>