Building Google Chrome Extension from Source
This guide explains how to build and install the AliasVault Google Chrome extension from source code.
Prerequisites
- Node.js installed on your computer
- Git to clone the repository (optional)
Building the Google Chrome Extension
- Clone the repository:
git clone https://github.com/lanedirt/AliasVault.git
- Navigate to the Google Chrome extension directory:
cd AliasVault/browser-extensions/chrome
- Install the required dependencies:
npm install
- Build the extension:
npm run build
Installing in Google Chrome
- Open Google Chrome and go to
chrome://extensions/
- Enable “Developer mode” using the toggle in the top right corner
- Click “Load unpacked”
- Navigate to and select the
dist
folder insidebrowser-extensions/chrome
- 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.