Building Firefox Extension from Source
This guide explains how to build and install the AliasVault Firefox extension from source code.
Prerequisites
- Node.js installed on your computer
- Git to clone the repository (optional)
Building the Firefox Extension
- Clone the repository:
git clone https://github.com/lanedirt/AliasVault.git
- Navigate to the Browser Extension directory:
cd AliasVault/browser-extension
- Install the required dependencies:
npm install
- Build the extension:
npm run build:firefox
Installing in Firefox
- Open Firefox and go to
about:debugging
- Click “This Firefox”
- Click “Load Temporary Add-on”
- Navigate to and select the file
browser-extension/dist/firefox-mv2/manifest.json
- The AliasVault extension should now appear in your extensions list
Development Mode (Optional)
If you plan to modify the extension code, see the browser-extensions developer documentation for more information.