A bookmark manager extension for browsers.
- Quick open with
Ctrl + Alt + B
(Command + Control + B
on mac ) - Quick search with
Ctrl + F
(Command + F
on mac ), then use arrow keys to navigate through search results,Enter
key ( or double click ) to quickly open a bookmark or folder, pressESC
key will clear the search input - Hold
Ctrl
(Command
on mac ) to select multiple items, holdShift
to select all items in between - Copy, paste and cut with
Ctrl + C
(Command + C
on mac ),Ctrl + V
(Command + V
on mac ),Ctrl + X
(Command + X
on mac ), copy or cut bookmarks will also copy their urls to clipboard - Undo and redo with
Ctrl + Z
(Command + Z
on mac ),Ctrl + Shift + Z
(Command + Shift + Z
on mac ), note that action history is not kept between sessions, meaning when you close the bookmark page, all action history are cleared - Delete bookmarks/folders via
Delete
- Drag and drop selected items
- Sort bookmarks by name, url, date
- Hash history sync (meaning you can go forward and backward like web pages)
- Supports dark mode
- Settings are kept locally, such as theme setting (light / dark)
- Find duplicated bookmarks
-
make sure nodejs is installed
# use nvm to manage nodejs versions # https://github.com/nvm-sh/nvm nvm install 18 nvm use 18
-
install dependencies
# this project is using pnpm as its package manager, to install it, run npm i -g pnpm # install dependencies using pnpm pnpm i
-
run
pnpm run pack:firefox
to build the extension intoweb-ext-artifacts
folder
-
run
pnpm run dev
to start dev server -
load the extension in your firefox desktop browser
-
visit
about:debugging#/runtime/this-firefox
and clickLoad Temporary Add-on...
button -
select the
manifest.json
file under thefirefox
folder
-
-
load the extension in your chrome desktop browser
-
visit
chrome:https://extensions
and clickLoad unpacked
button -
select the
chrome
folder
-