Files
DavidandClaude Opus 4.7 c11bbf3026 Minimized list view, CSP fix, last-row menu drop-up
- Minimized popup now shows a compact bookmark list grouped by column
  header, with color stripe, alias, and inline action buttons per row
- Add img-src 'self' data: to CSP so Vite's inlined tray icon loads in
  the production build (was blocked by default-src 'self')
- Last-row ⋯ menu opens upward to avoid overflowing the popup edge

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-29 12:02:23 -04:00

13 lines
451 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; connect-src 'self' http://localhost:5174 ws://localhost:5174" />
<title>Trailhead Path Bookmarker</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>