From d8bb70890a4281ba6eb82e528ebf1dd643d5a67d Mon Sep 17 00:00:00 2001 From: bytedream Date: Sat, 8 Nov 2025 22:24:29 +0100 Subject: [PATCH] update build instructions --- README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a7be148..5c320b9 100644 --- a/README.md +++ b/README.md @@ -120,15 +120,17 @@ If the requirements are satisfied, you can continue with the following commands: ```shell # install all dependencies -$ npm install +$ npm i -# build the extension source to the dist/ directory -$ npm run build +# build the extension and start it in a new firefox instance +$ npm run dev:firefox -# same as build + more optimizations and browser specific settings at release/ -$ npm run release:firefox # or "release:chrome" to create a release for chromium based browsers +# build the extension with optimizations to the .output/firefox-mv2 directory +$ npm run build:firefox ``` +You can omit the `:firefox` suffix, then it's built for Chrome. + ##### Install If you want to use the addon in Chromium or any browser which is based on it, follow the steps in [installation](#-installation).