-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
58 lines (56 loc) · 3.01 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=device-width, initial-scale=1.0" />
<title>Privacy Protector Settings</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" />
<!-- Font Awesome Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" />
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<div class="extension-panel">
<nav class="navbar d-flex align-items-center ps-3 pe-3">
<a class="navbar-brand" href="https://github.com/Botxan/antitracker.git" target="_blank">
<img src="images/logo-face.png" width="50" height="50" alt="Logo" class="logo me-1" />
AntiTracker
</a>
<div class="nav-actions">
<button id="btn-settings" class="bg-transparent border-0">
<i class="fa-solid fa-gear text-white"></i>
</button>
</div>
</nav>
<div class="px-3 pb-2">
<div class="form-check form-switch my-2">
<input type="checkbox" class="form-check-input switch-toggle" id="selectAll" />
<label class="form-check-label" for="selectAll">Select All</label>
</div>
<div class="form-check form-switch my-2">
<input type="checkbox" class="form-check-input switch-toggle" id="obfuscateCanvas" />
<label class="form-check-label" for="obfuscateCanvas">Obfuscate Canvas Fingerprint</label>
</div>
<div class="form-check form-switch my-2">
<input type="checkbox" class="form-check-input switch-toggle" id="obfuscateHeaders" />
<label class="form-check-label" for="obfuscateHeaders">Obfuscate Headers</label>
</div>
<div class="form-check form-switch my-2">
<input type="checkbox" class="form-check-input switch-toggle" id="obfuscateKeystrokes" />
<label class="form-check-label" for="obfuscateKeystrokes">Obfuscate Keystrokes</label>
</div>
<div class="form-check form-switch my-2">
<input type="checkbox" class="form-check-input switch-toggle" id="obfuscateMouse" />
<label class="form-check-label" for="obfuscateMouse">Obfuscate Mouse Movements</label>
</div>
</div>
</div>
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"></script>
<!-- UI -->
<script src="js/popup.js" type="module"></script>
</body>
</html>