Installing the Capo extension locally
Installing the extension from source can be useful if you’re a developer testing code changes, or a technical user looking to beta test the latest features. This guide takes you through the steps to install the extension locally.
-
Clone the Capo GitHub repository:
Terminal window git clone git@github.com:rviscomi/capo.js.git -
Install dependencies and build the extensions:
Terminal window npm installnpm run build -
Load the built extension into your browser:
For Chrome:
- Navigate to
chrome://extensionsand enable Developer mode - Select Load unpacked and choose the newly generated
dist/chromesubdirectory
For Firefox:
- Navigate to
about:debugging - Click This Firefox on the left
- Click Load Temporary Add-on… and select the
manifest.jsonfile inside the newly generateddist/firefoxsubdirectory
- Navigate to
If you get the error Manifest file is missing or unreadable. Could not load manifest. in Chrome, make sure you’re loading the dist/chrome subdirectory, and not the top-level capo.js directory or the src directory.
If there are any other error messages, it’s possible that the latest source code has a bug. Please file an issue so we can investigate.