Files
aliasvault/docs/browser-extensions/chrome/build-from-source.md
2025-02-21 11:22:20 +01:00

1.2 KiB

layout, title, parent, grand_parent, nav_order
layout title parent grand_parent nav_order
default Build from Source Google Chrome Browser Extensions 2

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

  1. Clone the repository:
git clone https://github.com/lanedirt/AliasVault.git
  1. Navigate to the Google Chrome extension directory:
cd AliasVault/browser-extensions/chrome
  1. Install the required dependencies:
npm install
  1. Build the extension:
npm run build

Installing in Google Chrome

  1. Open Google Chrome and go to chrome://extensions/
  2. Enable "Developer mode" using the toggle in the top right corner
  3. Click "Load unpacked"
  4. Navigate to and select the dist folder inside browser-extensions/chrome
  5. 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.