Simple Bookmarks
A Vicinae extension for keeping your most-used links one keystroke away. Add, search, open, copy, edit, and delete bookmarks without leaving Vicinae.
Features
- Quick add with title and URL
- Search-as-you-type filtering in the list view
- Open in browser or copy URL to clipboard
- Edit existing entries or delete with confirmation
- Data persisted locally via Vicinae
LocalStorage
Getting Started
Install dependencies and start the extension in development mode:
npm install
npm run dev
Additional scripts:
npm run lint— run Vicinae lintingnpm run format— formatsrcwith Biome
Using the Extension
- Launch the
Simple Bookmarkscommand from Vicinae. - Use the “Add New Link” item to create a bookmark.
- Type in the search bar to filter by title or URL.
- For each link, the action panel lets you open in browser, copy the URL, edit the entry, or delete it (with a confirmation prompt).
Data Storage
Bookmarks are stored locally under the simple-bookmarks key via Vicinae
LocalStorage. Clearing extension data will reset the list.
Project Structure
src/simple-bookmarks.tsx— main command and list UIsrc/components/AddLinkForm.tsx— form to add bookmarkssrc/components/EditLinkForm.tsx— edit existing bookmarkssrc/utils/storage.ts— load/save helpers backed byLocalStorage
License
MIT