-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
48 lines (43 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Archive-It Leak Debugger & Inspector (ALDI)</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script src="jquery/jquery-3.7.1.min.js"></script>
</head>
<body>
<main>
<header>
<h2>LEAKS:</h2>
<h2 id="total">0</h2>
<h2>CSP VIOLATIONS:</h2>
<h2 id="CSPtotal">0</h2>
</header>
<div class="switch-container">
<span class="slider-text">REWRITE CSP</span>
<label class="switch">
<input type="checkbox" id="toggleSwitch" />
<span class="slider"></span>
</label>
</div>
<section class="buttons">
<button id="openCspWindow" aria-label="Display the leak log">
CSP Violations
</button>
<button id="openLeakWindow" aria-label="Display the leak log">
Leak Log
</button>
<button id="openLogWindow" aria-label="Display the console log">
Console Log
</button>
</section>
</main>
<footer>
<p>Archive-It Leak Debugger & Inspector (ALDI)</p>
<p>ver 2.0</p>
</footer>
<script src="display.js"></script>
</body>
</html>