mirror of
https://github.com/imjasonh/cnotes
synced 2026-07-08 00:55:37 +00:00
- 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)
25 lines
No EOL
562 B
HTML
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> |