-
Notifications
You must be signed in to change notification settings - Fork 4
/
popup.html
55 lines (55 loc) · 1.78 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>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@1,300&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="libs/bootstrap/bootstrap.min.css" />
<link rel="stylesheet" href="libs/bootstrap/bootstrap.rtl.min.css" />
<link rel="stylesheet" href="css/popup.css" />
</head>
<body>
<header class="d-flex justify-content-center align-items-center">
<img src="images/fingerprint-48.png" style="margin-right: 10px" />
<span style="font-size: 20px; font-weight: bold"
>Fingerprint Spoofer</span
>
</header>
<div
class="d-flex justify-content-center align-content-center flex-column"
style="padding: 10px 0"
>
<div class="d-flex justify-content-center">
<button id="spoofNav" class="btn btn-sm" type="button"></button>
</div>
<div class="d-flex justify-content-center">
<button
id="spoofCanvas"
class="btn btn-sm"
type="button"
></button>
</div>
<div class="d-flex justify-content-center">
<button id="spoofUA" class="btn btn-sm" type="button"></button>
</div>
<div class="d-flex justify-content-center">
<button id="blockImg" class="btn btn-sm" type="button"></button>
</div>
<div class="d-flex justify-content-center">
<button id="blockJS" class="btn btn-sm" type="button"></button>
</div>
</div>
<div
id="spinner"
class="d-flex justify-content-center align-items-center d-none"
>
<div id="overlay"></div>
<div class="spinner-border text-danger position-absolute"></div>
</div>
<script src="libs/bootstrap/bootstrap.bundle.min.js"></script>
<script src="js/popup.js"></script>
</body>
</html>