mirror of
https://github.com/imjasonh/cnotes
synced 2026-07-08 09:05:17 +00:00
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)
This commit is contained in:
parent
ce24ed507f
commit
32be89b76d
12 changed files with 1016 additions and 0 deletions
25
chrome-extension/popup.html
Normal file
25
chrome-extension/popup.html
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
<!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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue