-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcookie_window.html
More file actions
44 lines (40 loc) · 1.13 KB
/
cookie_window.html
File metadata and controls
44 lines (40 loc) · 1.13 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Live Cookies - Chrome Extension</title>
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body class="LiveCookies">
<!-- BEGIN HEADER -->
<div class="LiveCookies-header">
<p id="1stParty" class="LiveCookies-buttonText is-Active">
Same-Domain Cookies
</p>
<p id="AllCookies" class="LiveCookies-buttonText">Cross-Domain Cookies</p>
</div>
<!-- END HEADER -->
<div class="LiveCookies-ButtonWrapper">
<button id="ClearCookies" class="LiveCookies-Button">
Clear All Cookies
</button>
<button id="CopyCookies" class="LiveCookies-Button">
<span class="LiveCookies-Button-Text">Copy All Cookies</span>
<span class="LiveCookies-Check"></span>
</button>
</div>
<!-- <ul class="LiveCookies-cookieList"></ul> -->
<table class="LiveCookies-table">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
<th>Domain</th>
<th>Expiration</th>
<th>Remove</th>
</tr>
</thead>
<tbody class="LiveCookies-cookieList"></tbody>
</table>
<script src="background.js"></script>
</body>
</html>