Skip to content

Commit 8318f4a

Browse files
authored
Fix typos and update the contributors list (#2173)
1 parent 2588231 commit 8318f4a

1 file changed

Lines changed: 24 additions & 24 deletions

File tree

src/content/documentation/develop/getting-started-with-web-ext.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -6,28 +6,28 @@ topic: Develop
66
tags: [guide, installing, packaging, testing, tools, web-ext, webextension]
77
contributors:
88
[
9-
caitmuenster,
10-
rebloor,
9+
Jamesllllllllll,
1110
Sheppy,
12-
kumar303,
13-
platy,
14-
hellosct1,
15-
lgreco,
16-
wbamberg,
11+
TimWitzdam,
1712
andrewtruongmoz,
18-
saintsebastian,
13+
ankushduacodes,
1914
arai,
20-
tofumatt,
15+
caitmuenster,
2116
chrisdavidmills,
22-
ankushduacodes,
17+
hellosct1,
2318
huyenltnguyen,
19+
inan-hira,
20+
kumar303,
21+
lgreco,
22+
platy,
2423
rebloor,
25-
Jamesllllllllll,
26-
TimWitzdam,
24+
saintsebastian,
25+
tofumatt,
26+
wbamberg,
2727
willdurand
2828
]
29-
last_updated_by: willdurand
30-
date: 2025-09-24
29+
last_updated_by: inan-hira
30+
date: 2025-09-25
3131
---
3232

3333
<!-- Page Hero Banner -->
@@ -58,7 +58,7 @@ date: 2025-09-24
5858

5959
## Installation
6060

61-
`web-ext` is a Node-based application. You install it with `brew` or the [NodeJS](https://nodejs.org/) `npm` tool.
61+
`web-ext` is a Node-based application. You install it with `brew` or the [Node.js](https://nodejs.org/) `npm` tool.
6262

6363
Install with `brew` using:
6464

@@ -72,7 +72,7 @@ Install with `npm` using:
7272
npm install --global web-ext
7373
```
7474

75-
`web-ext` requires the current [LTS](https://github.com/nodejs/Release#release-schedule) (long-term support) versions of [NodeJS](https://nodejs.org/).
75+
`web-ext` requires the current [LTS](https://github.com/nodejs/Release#release-schedule) (long-term support) versions of [Node.js](https://nodejs.org/).
7676

7777
To test whether the installation worked, in a new terminal window, run this command to display the `web-ext` version number:
7878

@@ -220,7 +220,7 @@ Extension reloading is only supported in Firefox 49 or higher.
220220

221221
### Test in different versions of Firefox
222222

223-
To run your extension in a version of [Firefox Desktop](https://www.mozilla.org/firefox/) other than the default, use the `--firefox` option to specify a full path to the binary file. Here is an example for Mac OS:
223+
To run your extension in a version of [Firefox Desktop](https://www.mozilla.org/firefox/) other than the default, use the `--firefox` option to specify a full path to the binary file. Here is an example for macOS:
224224

225225
```shell
226226
web-ext run --firefox=/Applications/FirefoxNightly.app/Contents/MacOS/firefox-bin
@@ -381,8 +381,8 @@ For example:
381381
"contributions_url": "https://donate.mozilla.org",
382382
"requires_payment": false,
383383
"homepage": {
384-
"en-US": "http://example.org?lang=en-US",
385-
"fr": "http://example.org?lang=fr"
384+
"en-US": "https://example.org?lang=en-US",
385+
"fr": "https://example.org?lang=fr"
386386
},
387387
"support_email": {
388388
"en-US": "support@example.org",
@@ -400,7 +400,7 @@ Visit the [addons.mozilla.org credentials](https://addons.mozilla.org/developers
400400

401401
#### Run `web-ext sign`
402402

403-
You can now run `web-ext sign` supplying the API key and location of the JSON file containing the metedata.:
403+
You can now run `web-ext sign` supplying the API key and location of the JSON file containing the metadata:
404404

405405
```shell
406406
web-ext sign --channel=listed --amo-metadata=<path to your metadata JSON file> --api-key=$AMO_JWT_ISSUER --api-secret=$AMO_JWT_SECRET
@@ -432,7 +432,7 @@ Visit the [addons.mozilla.org credentials](https://addons.mozilla.org/developers
432432

433433
#### Run `web-ext sign`
434434

435-
You can now run `web-ext sign` supplying the API key and location of the JSON file containing the metedata.:
435+
You can now run `web-ext sign` supplying the API key and location of the JSON file containing the metadata:
436436

437437
```shell
438438
web-ext sign --channel=listed --amo-metadata=<path to your metadata JSON file> --api-key=$AMO_JWT_ISSUER --api-secret=$AMO_JWT_SECRET
@@ -594,7 +594,7 @@ export default {
594594

595595
If a home directory config and a local directory config define the same option, the value from the latter file is used.
596596

597-
For example, creating `~/.web-ext-config.mjs` containg:
597+
For example, creating `~/.web-ext-config.mjs` with the contents:
598598

599599
```js
600600
export default {
@@ -605,7 +605,7 @@ export default {
605605
}
606606
```
607607

608-
Is the equivalent of:
608+
is the equivalent of:
609609

610610
```shell
611611
web-ext sign --api-key <API_KEY> --api-secret <API_SECRET>
@@ -693,7 +693,7 @@ Your extension can detect whether it was installed using `web-ext run`, rather t
693693

694694
### Use web-ext from a script
695695

696-
You can use `web-ext` as a `NodeJS module`. Here is [more information](https://github.com/mozilla/web-ext#using-web-ext-in-nodejs-code), with example code.
696+
You can use `web-ext` as a `Node.js module`. Here is [more information](https://github.com/mozilla/web-ext#using-web-ext-in-nodejs-code), with example code.
697697

698698
</div>
699699
</article>

0 commit comments

Comments
 (0)