forked from GoogleChrome/chrome-extensions-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanager.html
43 lines (39 loc) · 744 Bytes
/
manager.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
<html>
<head>
<style>
table {
border-collapse:collapse;
}
td {
border: 1px solid black;
padding-left: 5px;
}
td.button {
border: none;
}
td.cookie_count {
text-align: right;
}
</style>
<script src="manager.js"></script>
</head>
<body>
<h2>Cookies! ... Nom Nom Nom...</h2>
<button id="remove_button">DELETE ALL!</button>
<div id="filter_div">
Filter: <input id="filter" type="text">
<button>x</button>
</div>
<br />
<div id="summary_div">
Showing <span id="filter_count"></span> of <span id="total_count"></span> cookie domains.
<span id="delete_all_button"></span>
</div>
<br />
<table id="cookies">
<tr class="header">
<th>Name</th>
<th>#Cookies</th>
</tr>
</body>
</html>