A lightweight Chrome extension to quickly capture notes from the browser toolbar.

- Add and delete notes
- Edit existing notes
- Pin important notes (pinned notes stay at the top)
- Search notes instantly
- Dark mode toggle (saved across sessions)
- Export all notes as a
.txtfile - Markdown support with live preview
The extension supports a practical Markdown subset:
- Headings:
#,##,### - Bold:
**text** - Italic:
*text* - Strikethrough:
~~text~~ - Inline code:
`code` - Code blocks: triple backticks
- Bullet lists:
- itemor* item - Blockquotes:
> quote - Links:
[label](https://example.com)
- Download or clone this project.
- Open Chrome and go to
chrome://extensions/. - Enable Developer mode (top-right).
- Click Load unpacked.
- Select this folder:
quick-notes-extension. - Pin the extension from the browser toolbar if needed.
- Click the extension icon to open the popup.
- Write a note in the textarea and click Add Note.
- Use Edit to modify a note and Cancel Edit to exit editing mode.
- Use Pin/Unpin to prioritize important notes.
- Use the search box to filter notes.
- Click Export .txt to download all notes.
- Toggle Dark/Light mode from the header.
- Notes are stored locally using
chrome.storage.local. - Theme preference is also stored locally.
- Existing legacy string notes are automatically migrated to the new note-object format.
manifest.json- Extension manifest (MV3)popup.html- Popup UI structurestyle.css- Popup styles (light/dark themes)popup.js- App logic (notes CRUD, pin, search, export, markdown, theme)icon.png- Extension icon
Current manifest version: 1.0