Installation
How to install Bookmark Scout
Installation
From GitHub Releases
Download the latest release from GitHub Releases.
Each release includes browser-specific assets:
bookmark-scout-*-chrome.crxbookmark-scout-*-chrome.zipbookmark-scout-*-firefox.zipbookmark-scout-*-edge.zip
Chrome
Use either the signed CRX or the ZIP archive:
- Download
bookmark-scout-*-chrome.crxorbookmark-scout-*-chrome.zip - Open
chrome://extensions/ - Enable Developer mode
- Drag
bookmark-scout-*-chrome.crxinto the page, or extract the ZIP and click Load unpacked - Select the extracted folder when using the ZIP
Firefox
- Download
bookmark-scout-*-firefox.zip - Extract the archive
- Open
about:debugging#/runtime/this-firefox - Click Load Temporary Add-on
- Select the extracted
manifest.jsonfile
Edge
- Download
bookmark-scout-*-edge.zip - Open
edge://extensions/ - Enable Developer mode
- Extract the archive
- Click Load unpacked
- Select the extracted folder
From Source
gh repo clone isandrel/bookmark-scout
cd bookmark-scout
bun install
bun run buildThe source build writes browser outputs under apps/extension/dist/:
- Chrome:
apps/extension/dist/chrome-mv3 - Firefox:
apps/extension/dist/firefox-mv2 - Edge:
apps/extension/dist/edge-mv3
Use the matching output folder when loading the extension unpacked.
Development Commands
# Chrome development server
bun run dev
# Firefox development server
bun run dev:firefox
# Edge development server
bun run dev:edge
# Build all browser targets
bun run build
# Lint extension source
bunx nx run extension:lintThe repository does not currently expose a dedicated automated unit or integration test suite in the normal workspace scripts. Treat lint and build commands as validation, not test coverage.