snippetbashTip
web-ext — Manage web extension development. More information: <https://github.com/mozilla/web-ext>.
Viewed 0 times
commanddevelopmentclimanageextensionwebmoreweb-ext
Problem
How to use the
web-ext command: Manage web extension development. More information: <https://github.com/mozilla/web-ext>.Solution
web-ext — Manage web extension development. More information: <https://github.com/mozilla/web-ext>.Run the web extension in the current directory in Firefox:
web-ext runRun a web extension from a specific directory in Firefox:
web-ext run --source-dir {{path/to/directory}}Display verbose execution output:
web-ext run --verboseRun a web extension in Firefox Android:
web-ext run --target firefox-androidLint the manifest and source files for errors:
web-ext lintBuild and package the extension:
web-ext buildDisplay verbose build output:
web-ext build --verboseSign a package for self-hosting:
web-ext sign --api-key {{api_key}} --api-secret {{api_secret}}Code Snippets
Run the web extension in the current directory in Firefox
web-ext runRun a web extension from a specific directory in Firefox
web-ext run --source-dir {{path/to/directory}}Display verbose execution output
web-ext run --verboseRun a web extension in Firefox Android
web-ext run --target firefox-androidLint the manifest and source files for errors
web-ext lintContext
tldr-pages: common/web-ext
Revisions (0)
No revisions yet.