1
0
Fork 0
mirror of https://github.com/imjasonh/cnotes synced 2026-07-08 00:55:37 +00:00
cnotes/chrome-extension/popup.html
Jason Hall 32be89b76d
Add Chrome extension for viewing git notes on GitHub
- Popup-based extension that works on GitHub commit pages
- Shows badge with note count when commits have notes
- Displays all available git notes refs in tabbed interface
- Supports cnotes format with special formatting
- Works with any public GitHub repository (no auth required)
- Includes caching to minimize API calls (60 req/hour limit)
2025-07-21 22:22:32 -04:00

25 lines
No EOL
562 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="popup-container">
<header class="popup-header">
<h1>Git Notes Viewer</h1>
<div id="status" class="status"></div>
</header>
<main id="content" class="popup-content">
<!-- Content will be inserted here by popup.js -->
<div class="loading">
<div class="spinner"></div>
<span>Loading...</span>
</div>
</main>
</div>
<script src="popup.js"></script>
</body>
</html>