-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
42 lines (40 loc) · 934 Bytes
/
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
<!doctype html>
<html>
<head>
<title>Collected trackers</title>
<style>
body {
font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
font-size: 100%;
}
#status {
/* avoid an excessively wide status text */
white-space: pre;
text-overflow: ellipsis;
overflow: hidden;
max-width: 400px;
}
table, th, td {
border: 1px solid black;
}
</style>
<!--
- JavaScript and HTML must be in separate files: see our Content Security
- Policy documentation[1] for details and explanation.
-
- [1]: https://developer.chrome.com/extensions/contentSecurityPolicy
-->
</head>
<body>
<button id="launch">Launch in new tab</button>
<table id="current_trackers">
<tr>
<th>Tracker</th>
<th>Found at</th>
<th>LocalStorage used</th>
<th>IndexedDB used</th>
</tr>
</table>
</body>
<script src="popup.js"></script>
</html>