Commit 5d99777c authored by Mike Perry's avatar Mike Perry Committed by brizental
Browse files

Firefox preference overrides.

parent 7cf1fcf0
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -1795,3 +1795,5 @@ tools/ts/error_list.json
tools/ts/test/baselines/
try_task_config.json
xpcom/idl-parser/xpidl/fixtures/xpctest.d.json

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

File added.

Preview size limit exceeded, changes collapsed.

+3 −3
Original line number Diff line number Diff line
@@ -52,9 +52,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
@@ -258,6 +258,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
+1 −0
Original line number Diff line number Diff line
@@ -54,6 +54,7 @@ if CONFIG["MOZ_ARTIFACT_BUILDS"]:
# These files are specified in this moz.build to pick up DIST_SUBDIR as set in
# this directory, which is un-set in browser/app.
JS_PREFERENCE_PP_FILES += [
    "app/profile/001-base-profile.js",
    "app/profile/firefox.js",
]
FINAL_TARGET_FILES.defaults += ["app/permissions"]
Loading