Firefox extension that adds "Close Tabs to the Left" context menu entry.
As a result of "Close Tabs to the Left" becoming standard functionality in Firefox version 88, this extension will be restricted to Firefox versions 87 and below.
See package.json for more info on the yarn scripts mentioned here.
- Node.js 14
- yarn 1.22+
yarn install
# output development build to ./dist
yarn build
# use "web-ext run" to spin up firefox with the built extension
yarn start
- Install the desired language pack from Dictionaries and Language Packs.
- Create a non-default profile via
about:profiles
and set the preferred language. - Launch via
web-ext run --pref intl.locale.requested=<locale-id> -p "<profile-name>" --keep-profile-changes
- Example configuration using the es-MX language pack and profile named
esmx
:web-ext run --pref intl.locale.requested=es-MX -p "esmx" --keep-profile-changes
- Example configuration using the es-MX language pack and profile named
See start:dev-es
in package.json for a working configuration.
Generates and commits a changelog and version bumps based on conventional commit rules.
yarn run stage
The following scripts are also provided to override automatic semver detection:
yarn run stage:patch
yarn run stage:minor
yarn run stage:major
Outputs a production-ready build artifact to ./web-ext-artifacts
.
yarn run release