Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ The `gecko` sub-key supports these properties:
See [Extensions and the Add-on ID](https://extensionworkshop.com/documentation/develop/extensions-and-the-add-on-id/) for more information about setting extension IDs.

- `strict_min_version`
- : Minimum version of Gecko to support. If the Firefox version on which the extension is being installed or run is below this version, the extension is not installed or not run. If not provided, all versions earlier than `strict_max_version` are supported. "\*" is not valid in this field.
- : Minimum version of Gecko to support. If the Firefox version on which the extension is being installed or run is below this version, the extension is not installed or not run. If not provided, all versions earlier than `strict_max_version` are supported. Neither "\*" nor dot releases are valid in this field, e.g. a value of "140.0" will work while "140.1" will fail the validation on *addons.mozilla.org* with error **Unknown "strict_min_version" 140.1 for Firefox**.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[mdn-linter] reported by reviewdog 🐶

Suggested change
- : Minimum version of Gecko to support. If the Firefox version on which the extension is being installed or run is below this version, the extension is not installed or not run. If not provided, all versions earlier than `strict_max_version` are supported. Neither "\*" nor dot releases are valid in this field, e.g. a value of "140.0" will work while "140.1" will fail the validation on *addons.mozilla.org* with error **Unknown "strict_min_version" 140.1 for Firefox**.
- : Minimum version of Gecko to support. If the Firefox version on which the extension is being installed or run is below this version, the extension is not installed or not run. If not provided, all versions earlier than `strict_max_version` are supported. Neither "\*" nor dot releases are valid in this field, e.g., a value of "140.0" will work while "140.1" will fail the validation on _addons.mozilla.org_ with error **Unknown "strict_min_version" 140.1 for Firefox**.

- `strict_max_version`
- : Maximum version of Gecko to support. If the Firefox version on which the extension is being installed or run is above this version, the extension is not installed or not run. Defaults to "\*", which disables checking for a maximum version.
- `update_url`
Expand Down
Loading