update build instructions

This commit is contained in:
2025-11-08 22:24:29 +01:00
parent 45900b2e86
commit d8bb70890a

View File

@@ -120,15 +120,17 @@ If the requirements are satisfied, you can continue with the following commands:
```shell ```shell
# install all dependencies # install all dependencies
$ npm install $ npm i
# build the extension source to the dist/ directory # build the extension and start it in a new firefox instance
$ npm run build $ npm run dev:firefox
# same as build + more optimizations and browser specific settings at release/ # build the extension with optimizations to the .output/firefox-mv2 directory
$ npm run release:firefox # or "release:chrome" to create a release for chromium based browsers $ npm run build:firefox
``` ```
You can omit the `:firefox` suffix, then it's built for Chrome.
##### Install ##### Install
If you want to use the addon in Chromium or any browser which is based on it, follow the steps in [installation](#-installation). If you want to use the addon in Chromium or any browser which is based on it, follow the steps in [installation](#-installation).