Skip to content

Commit

Permalink
Updated incorrect link text for links to browser_specific_settings (m…
Browse files Browse the repository at this point in the history
  • Loading branch information
rebloor committed Dec 16, 2022
1 parent 6d13995 commit 27b38cb
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ It is an object with the following properties:
- "theme"

- `updateUrl`
- : `string`. URL for updates to this add-on, taken from the manifest.json [applications](/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/browser_specific_settings) key.
- : `string`. URL for updates to this add-on, taken from the manifest.json [browser_specific_settings](/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/browser_specific_settings) key.
- `version`
- : `string`. Version of this add-on, taken from the manifest.json [version](/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/version) key.
- `versionName`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ let port = browser.runtime.connect(
### Parameters

- `extensionId` {{optional_inline}}
- : `string`. The ID of the extension to connect to. If the target has set an ID explicitly using the [applications](/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/browser_specific_settings) key in manifest.json, then `extensionId` should have that value. Otherwise it should have the ID that was generated for the target.
- : `string`. The ID of the extension to connect to. If the target has set an ID explicitly using the [browser_specific_settings](/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/browser_specific_settings) key in manifest.json, then `extensionId` should have that value. Otherwise it should have the ID that was generated for the target.
- `connectInfo` {{optional_inline}}

- : `object`. Details of the connection:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Values of this type are objects. They contain the following properties:
- : `integer`. The frame that opened the connection. Zero for top-level frames, positive for child frames. This will only be set when `tab` is set.
- `id` {{optional_inline}}

- : `string`. The ID of the extension that sent the message, if the message was sent by an extension. If the sender set an ID explicitly using the [applications](/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/browser_specific_settings) key in manifest.json, then `id` will have this value. Otherwise it will have the ID that was generated for the sender.
- : `string`. The ID of the extension that sent the message, if the message was sent by an extension. If the sender set an ID explicitly using the [browser_specific_settings](/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/browser_specific_settings) key in manifest.json, then `id` will have this value. Otherwise it will have the ID that was generated for the sender.

- `url` {{optional_inline}}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ let sending = browser.runtime.sendMessage(

- `extensionId` {{optional_inline}}

- : `string`. The ID of the extension to send the message to. Include this to send the message to a different extension. If the intended recipient has set an ID explicitly using the [applications](/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/browser_specific_settings) key in manifest.json, then `extensionId` should have that value. Otherwise it should have the ID that was generated for the intended recipient.
- : `string`. The ID of the extension to send the message to. Include this to send the message to a different extension. If the intended recipient has set an ID explicitly using the [browser_specific_settings](/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/browser_specific_settings) key in manifest.json, then `extensionId` should have that value. Otherwise it should have the ID that was generated for the intended recipient.

If `extensionId` is omitted, the message is sent to your extension.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ The following table shows the different available predefined messages:
the
<a
href="/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/browser_specific_settings"
>applications</a
>browser_specific_settings</a
>
key in manifest.json. It's the generated UUID that appears in the
add-on's URL. This means that you can't use this value as the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ The managed storage manifest contains a single JSON object with the following pr
<code
><a
href="/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/browser_specific_settings"
>applications</a
>browser_specific_settings</a
></code
>
key.
Expand Down Expand Up @@ -321,7 +321,7 @@ The PKCS #11 manifest is a file containing a JSON object with the following prop
<code
><a
href="/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/browser_specific_settings"
>applications</a
>browser_specific_settings</a
></code
>
key in your extension's <code>manifest.json</code> file, so you can
Expand Down

0 comments on commit 27b38cb

Please sign in to comment.