managarten/apps/news/packages/browser-extension/debug.html
Wuesteon ff80aeec1f refactor: restructure
monorepo with apps/ and services/
  directories
2025-11-26 03:03:24 +01:00

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>