-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
67 lines (64 loc) · 1.66 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
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
line-height: 1.5;
font-size: 0.9em;
padding: 1em;
margin: 0;
min-width: 200px;
}
.h-1, .h-2{
line-height: 1.1;
padding: 0;
margin: 0 0 0.5em;
}
.h-1{
font-size: 1.2em;
margin: 0 0 0.7em;
}
.h-2{
font-size: 1.1em;
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
li {
padding: 0;
margin: 0 0 0.2em;
}
details{
display: block;
margin: 0 0 0.8em;
}
</style>
</head>
<body>
<h2 class="h-2">Total URLs sanitized</h2>
<p id="cleaned_urls_count">Loading...</p>
<details>
<summary>Removed Parameter details</summary>
<ul>
<li id="utm_source">Loading...</li>
<li id="utm_medium">Loading...</li>
<li id="utm_campaign">Loading...</li>
<li id="utm_term">Loading...</li>
<li id="utm_content">Loading...</li>
<li id="fbclid">Loading...</li>
<li id="gclid">Loading...</li>
<li id="_hsenc">Loading...</li>
<li id="mc_cid">Loading...</li>
<li id="mc_eid">Loading...</li>
<li id="igshid">Loading...</li>
</ul>
</details>
<div class="actions">
<button id="resetButton">Reset Statistics</button>
</div>
<script src="popup.js"></script>
</body>
</html>