Working POC
This commit is contained in:
29
popup.html
Normal file
29
popup.html
Normal file
@ -0,0 +1,29 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<script src="popup.js" type="module"></script>
|
||||
<style>
|
||||
#cookieJson {
|
||||
background: #f5f5f5;
|
||||
border: 1px dashed black;
|
||||
padding: 20px;
|
||||
}
|
||||
#cookieInput {
|
||||
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<form id="control-row">
|
||||
<label for="input">Domain:</label>
|
||||
<input type="text" id="input" />
|
||||
<br />
|
||||
</form>
|
||||
<textarea id="cookieInput" rows="20" cols="50"></textarea>
|
||||
<button id="getCookiesButton">Get Cookies</button>
|
||||
<button id="saveCookiesButton">Set Cookies</button>
|
||||
<button id="go">Clear Cookies</button>
|
||||
<pre id="cookieJson"></pre>
|
||||
<span id="message" hidden></span>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user