Extension Mangement with ExtensionSettings #1009
-
I'm having some issues with managing extensions in Firefox with the latest ADMX templates. Within Group Policy under "Computer Configuration\Administrative Templates\Mozilla\Firefox\Extensions" I have "Extension Management", "Extension Update", "Extensions to Install", "Extension to Uninstall", and "Prevent extensions from being disabled or removed". I'd like to configure Firefox to force install two extensions (uBlock and Adblock Plus) and allow other extensions I specify to be installed by the user, but not forced. Also, I'd like extensions to update themselves and not be disabled/removed by the user. Finally, I'd like all extensions not allowed, or force installed to be removed from the browser/system. My issue is that I created a JSON as shown in ExtensionSettings, but it's not effecting the browser after forcing a gpupdate on the system. I'm not sure if the other policy settings are overriding it, or if I'm doing this wrong. I've attached my settings below and JSON for extension management. Policy Settings: {
"*": {
"install_mode": "blocked",
"blocked_install_message": "The system administrator has disabled software installation."
},
"[email protected]": {
"install_mode": "force_installed",
"install_url": "https://addons.mozilla.org/firefox/downloads/file/4092158/ublock_origin-1.48.4.xpi"
},
"{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}": {
"install_mode": "force_installed",
"install_url": "https://addons.mozilla.org/firefox/downloads/file/4080833/adblock_plus-3.16.2.xpi"
},
"{446900e4-71c2-419f-a6a7-df9c091e268b}": {
"install_mode": "allowed"
}
} Extension Update - Enabled |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 3 replies
-
ExtensionSettings completely replaces Extensions to Uninstall - Enabled (Option Values): * So you shouldn't need to do that. What do you see in about:policies? From what I see, that extensionsettings should work. I'll doublecheck. |
Beta Was this translation helpful? Give feedback.
-
OK, let me do some testing. |
Beta Was this translation helpful? Give feedback.
-
I found it. install_mode should be installation_mode See: https://github.com/mozilla/policy-templates/blob/master/README.md#extensionsettings and again, you shouldn't need to use any other settings, that should uninstall things as well. |
Beta Was this translation helpful? Give feedback.
-
You should never install any other content blocker alongside uBlock Origin. Read this explanation. |
Beta Was this translation helpful? Give feedback.
I found it.
install_mode
should be
installation_mode
See:
https://github.com/mozilla/policy-templates/blob/master/README.md#extensionsettings
and again, you shouldn't need to use any other settings, that should uninstall things as well.