Safari extension to write notes about websites. Shows a badge indicator when visiting any page on a domain that has notes.
- Write notes about any website via toolbar popup
- Domain-level matching: note on
github.comshows badge ondocs.github.com - Notes stored locally in browser storage
- Keyboard shortcut: Cmd+S to save
Requires macOS and Xcode.
- Open
WebsiteNotes/WebsiteNotes.xcodeprojin Xcode - Select "WebsiteNotes (macOS)" scheme
- Build and run (Cmd+R)
- Safari → Settings → Advanced → "Show features for web developers"
- Develop menu → "Allow Unsigned Extensions"
- Safari → Settings → Extensions → Enable "WebsiteNotes"
Click the extension icon in Safari toolbar to open the note editor. Notes are saved per domain.
SafariNoteExtension Extension/ # Web extension source
├── manifest.json
├── background.js # Badge logic, domain matching
├── popup.html/js/css # Note editor UI
└── images/ # Icons
WebsiteNotes/ # Xcode project wrapper
└── WebsiteNotes.xcodeproj