mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 06:21:09 +02:00
Move inactive projects out of active workspace: - bauntown (community website) - maerchenzauber (AI story generation) - memoro (voice memo app) - news (news aggregation) - nutriphi (nutrition tracking) - reader (reading app) - uload (URL shortener) - wisekeep (AI wisdom extraction) Update CLAUDE.md documentation: - Add presi to active projects - Document archived projects section - Update workspace configuration Archived apps can be re-activated by moving back to apps/ 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
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> |