mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-17 07:59:41 +02:00
28 lines
No EOL
798 B
HTML
28 lines
No EOL
798 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Debug Extension Storage</title>
|
|
<style>
|
|
body { font-family: Arial; padding: 20px; }
|
|
.section { margin: 20px 0; }
|
|
button { padding: 10px; margin: 5px; }
|
|
pre { background: #f5f5f5; padding: 10px; border-radius: 5px; max-height: 400px; overflow-y: auto; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Kokon Extension Debug</h1>
|
|
|
|
<div class="section">
|
|
<button id="checkBtn">Check Chrome Storage</button>
|
|
<button id="clearBtn">Clear Chrome Storage</button>
|
|
<button id="testBtn">Set Test Data</button>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h3>Chrome Storage Contents:</h3>
|
|
<pre id="storageContent">Loading...</pre>
|
|
</div>
|
|
|
|
<script src="debug.js"></script>
|
|
</body>
|
|
</html> |