19 lines
687 B
HTML
19 lines
687 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<style>
|
|
body{width:420px;max-height:500px;margin:0;padding:8px;font:12px monospace;background:#1e1e1e;color:#d4d4d4;overflow-y:auto}
|
|
h3{margin:4px 0;color:#569cd6}
|
|
button{background:#264f78;color:#fff;border:none;padding:4px 12px;cursor:pointer;border-radius:3px;margin-bottom:6px}
|
|
button:hover{background:#37699e}
|
|
pre{white-space:pre-wrap;word-break:break-all;margin:0;padding:6px;background:#252526;border-radius:3px;max-height:420px;overflow-y:auto}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h3>🍪 Cookies</h3>
|
|
<button id="refresh">刷新</button>
|
|
<pre id="out">点击刷新获取 cookies...</pre>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html> |