fix(firefox): auto-enable the sideloaded Firefox Color add-on (task 0032)

Firefox disables profile-sideloaded extensions by default, so the Firefox
Color add-on that carries the Nord chrome theme installed but stayed disabled
and the chrome kept its default look. Set extensions.autoDisableScopes = 0 so
it enables on detection; the policy-installed functional extensions are
force-enabled by policy and unaffected.
This commit is contained in:
2026-07-24 08:41:34 -04:00
parent 6484f9466c
commit bd32795e23

View File

@@ -52,6 +52,11 @@ in
extensions.force = true; extensions.force = true;
settings = { settings = {
# Auto-enable the sideloaded Firefox Color add-on that carries the
# Nord chrome theme, which Firefox otherwise leaves disabled.
# The functional extensions come through policy and are unaffected.
"extensions.autoDisableScopes" = 0;
# Sponsored surfaces the policies above do not reach. # Sponsored surfaces the policies above do not reach.
"browser.urlbar.suggest.quicksuggest.sponsored" = false; "browser.urlbar.suggest.quicksuggest.sponsored" = false;
"browser.newtabpage.activity-stream.showSponsored" = false; "browser.newtabpage.activity-stream.showSponsored" = false;