🔖 Bookmark Scout Docs

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.crx
  • bookmark-scout-*-chrome.zip
  • bookmark-scout-*-firefox.zip
  • bookmark-scout-*-edge.zip

Chrome

Use either the signed CRX or the ZIP archive:

  1. Download bookmark-scout-*-chrome.crx or bookmark-scout-*-chrome.zip
  2. Open chrome://extensions/
  3. Enable Developer mode
  4. Drag bookmark-scout-*-chrome.crx into the page, or extract the ZIP and click Load unpacked
  5. Select the extracted folder when using the ZIP

Firefox

  1. Download bookmark-scout-*-firefox.zip
  2. Extract the archive
  3. Open about:debugging#/runtime/this-firefox
  4. Click Load Temporary Add-on
  5. Select the extracted manifest.json file

Edge

  1. Download bookmark-scout-*-edge.zip
  2. Open edge://extensions/
  3. Enable Developer mode
  4. Extract the archive
  5. Click Load unpacked
  6. Select the extracted folder

From Source

gh repo clone isandrel/bookmark-scout
cd bookmark-scout
bun install
bun run build

The 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:lint

The 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.

On this page