A bookmark manager extension for browsers.
Ctrl + Alt + B
( Command + Control + B
on mac )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, press ESC
key will clear the search inputCtrl
( Command
on mac ) to select multiple items, hold Shift
to select all items in betweenCtrl + 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 clipboardCtrl + 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 clearedDelete
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 into web-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 click Load Temporary Add-on...
button
select the manifest.json
file under the firefox
folder
load the extension in your chrome desktop browser
visit chrome://extensions
and click Load unpacked
button
select the chrome
folder