mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-01-20 03:49:58 -05:00
1.1 KiB
1.1 KiB
layout, title, parent, grand_parent, nav_order
| layout | title | parent | grand_parent | nav_order |
|---|---|---|---|---|
| default | Browser Extensions | Development | Miscellaneous | 2 |
Browser Extensions
AliasVault has browser extensions for Chrome and Firefox. In order to locally build and debug the extension, you can follow the steps below.
Chrome Extension
The Chrome extension is built with React as framework and Vite as build tool.
Install dependencies
cd browser-extensions/chrome
npm install
Build the extension
npm run build
Add the extension to Chrome
- Open Chrome and navigate to
chrome://extensions/. - Enable "Developer mode" in the top right corner.
- Click "Load unpacked" and select the
distfolder in thechromedirectory. - The extension should now be loaded and ready to use.
Auto-build on changes
When developing the extension, you can use the npm run watch command. This will automatically build the extension when you make changes to the code which will then automatically reload the extension in Chrome. This means you can make changes and see the results immediately.