Commit 93b2d9fd authored by Mike Perry's avatar Mike Perry Committed by morgan
Browse files

Firefox preference overrides.

parent baa8151f
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -299,3 +299,5 @@ toolkit/components/uniffi-bindgen-gecko-js/components/generated/*
# Test files for circular import in modules.
dom/base/test/jsmodules/import_circular.mjs
dom/base/test/jsmodules/import_circular_1.mjs

browser/app/profile/001-base-profile.js
+2 −0
Original line number Diff line number Diff line
@@ -1528,3 +1528,5 @@ tools/browsertime/package-lock.json
tools/ts/error_list.json
try_task_config.json
xpcom/idl-parser/xpidl/fixtures/xpctest.d.json

browser/app/profile/001-base-profile.js
+1012 −0

File added.

Preview size limit exceeded, changes collapsed.

+3 −3
Original line number Diff line number Diff line
@@ -50,9 +50,9 @@ pref("extensions.recommendations.themeRecommendationUrl", "https://color.firefox

pref("extensions.update.autoUpdateDefault", true);

// Check AUS for system add-on updates.
pref("extensions.systemAddon.update.url", "https://aus5.mozilla.org/update/3/SystemAddons/%VERSION%/%BUILD_ID%/%BUILD_TARGET%/%LOCALE%/%CHANNEL%/%OS_VERSION%/%DISTRIBUTION%/%DISTRIBUTION_VERSION%/update.xml");
pref("extensions.systemAddon.update.enabled", true);
// No AUS check for system add-on updates for Tor Browser users.
pref("extensions.systemAddon.update.url", "");
pref("extensions.systemAddon.update.enabled", false);

// Disable add-ons that are not installed by the user in all scopes by default.
// See the SCOPE constants in AddonManager.sys.mjs for values to use here.
+1 −0
Original line number Diff line number Diff line
@@ -249,6 +249,7 @@
@RESPATH@/browser/defaults/permissions
; Remote Settings JSON dumps
@RESPATH@/browser/defaults/settings
@RESPATH@/browser/@PREF_DIR@/001-base-profile.js

# channel-prefs.js has been removed on macOS.
#ifndef XP_MACOSX
Loading