Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .vscode/project-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ Shiki
signon
signon.autologin
Signons
sitepermission
socksproxy
SPNEGO
sslproxy
Expand Down
9 changes: 5 additions & 4 deletions src/content/docs/reference/policies/ExtensionSettings.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,11 @@ The configuration for each extension is a dictionary that can contain the fields
If `"installation_mode": "blocked"` is set (either for a specific ID or for `"*"`), extensions remain blocked regardless of `allowed_types`.
This setting can be used only for the default configuration.
Accepts one or more of:
- `"extension"`
- `"theme"`
- `"dictionary"`
- `"extension"`
- `"locale"`
- `"sitepermission"`
- `"theme"`
- `blocked_install_message`: Maps to a string specifying the error message to display to users if they're blocked from installing an extension. This allows you to append text to the generic error message, for example to direct users to a help desk or explain why an extension is blocked. This setting can be used only for the default configuration.
- `restricted_domains`: An array of domains on which content scripts can't be run. This setting can be used only for the default configuration.
- `updates_disabled`: (Firefox 89, Firefox ESR 78.11) Boolean that indicates whether to disable automatic updates for an individual extension.
Expand Down Expand Up @@ -77,11 +78,11 @@ The configuration for each extension is a dictionary that can contain the fields
},
"uBlock0@raymondhill.net": {
"installation_mode": "force_installed",
"install_url": "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi" # using slug / short name
"install_url": "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi"
},
"adguardadblocker@adguard.com": {
"installation_mode": "force_installed",
"install_url": "https://addons.mozilla.org/firefox/downloads/latest/adguardadblocker@adguard.com/latest.xpi" # using extension ID
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Removing comments to make this valid json

"install_url": "https://addons.mozilla.org/firefox/downloads/latest/adguardadblocker@adguard.com/latest.xpi"
},
"https-everywhere@eff.org": {
"installation_mode": "allowed",
Expand Down