1
0
Fork 0
mirror of https://github.com/imjasonh/cnotes synced 2026-07-18 06:39:02 +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:
Jason Hall 2025-07-21 22:22:32 -04:00
parent ce24ed507f
commit 32be89b76d
Failed to extract signature
12 changed files with 1016 additions and 0 deletions

10
chrome-extension/utils.js Normal file
View file

@ -0,0 +1,10 @@
// Utility functions for GitHub Git Notes Viewer
// Currently empty as the main functionality is in content.js and background.js
// This file is included in the manifest for future utility functions
// Placeholder for future utilities:
// - SHA validation
// - Markdown rendering
// - Enhanced error handling
// - User preferences management