mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
87 lines
3.2 KiB
JavaScript
87 lines
3.2 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
pref("browser.chromeURL", "chrome://webapprt/content/webapp.xul");
|
|
pref("browser.download.folderList", 1);
|
|
|
|
// Disable all add-on locations other than the profile (which can't be disabled this way)
|
|
pref("extensions.enabledScopes", 1);
|
|
// Auto-disable any add-ons that are "dropped in" to the profile
|
|
pref("extensions.autoDisableScopes", 1);
|
|
// Disable add-on installation via the web-exposed APIs
|
|
pref("xpinstall.enabled", false);
|
|
// Disable installation of distribution add-ons
|
|
pref("extensions.installDistroAddons", false);
|
|
// Disable the add-on compatibility dialog
|
|
pref("extensions.showMismatchUI", false);
|
|
|
|
// Set reportURL for crashes
|
|
pref("breakpad.reportURL", "https://crash-stats.mozilla.com/report/index/");
|
|
|
|
// Blocklist preferences
|
|
pref("extensions.blocklist.enabled", true);
|
|
pref("extensions.blocklist.interval", 86400);
|
|
// Controls what level the blocklist switches from warning about items to forcibly
|
|
// blocking them.
|
|
pref("extensions.blocklist.level", 2);
|
|
pref("extensions.blocklist.url", "https://addons.mozilla.org/blocklist/3/%APP_ID%/%APP_VERSION%/%PRODUCT%/%BUILD_ID%/%BUILD_TARGET%/%LOCALE%/%CHANNEL%/%OS_VERSION%/%DISTRIBUTION%/%DISTRIBUTION_VERSION%/%PING_COUNT%/%TOTAL_PING_COUNT%/%DAYS_SINCE_LAST_PING%/");
|
|
pref("extensions.blocklist.detailsURL", "https://www.mozilla.com/%LOCALE%/blocklist/");
|
|
pref("extensions.blocklist.itemURL", "https://addons.mozilla.org/%LOCALE%/%APP%/blocked/%blockID%");
|
|
|
|
pref("full-screen-api.enabled", true);
|
|
|
|
// IndexedDB
|
|
pref("dom.indexedDB.enabled", true);
|
|
pref("dom.indexedDB.warningQuota", 50);
|
|
|
|
// Offline cache prefs
|
|
pref("browser.offline-apps.notify", false);
|
|
pref("browser.cache.offline.enable", true);
|
|
pref("offline-apps.allow_by_default", true);
|
|
|
|
// TCPSocket
|
|
pref("dom.mozTCPSocket.enabled", true);
|
|
|
|
// Enable smooth scrolling
|
|
pref("general.smoothScroll", true);
|
|
|
|
// WebPayment
|
|
pref("dom.mozPay.enabled", true);
|
|
|
|
// Disable slow script dialog for apps
|
|
pref("dom.max_script_run_time", 0);
|
|
pref("dom.max_chrome_script_run_time", 0);
|
|
|
|
|
|
#ifndef RELEASE_BUILD
|
|
// Enable mozPay default provider
|
|
pref("dom.payment.provider.0.name", "Firefox Marketplace");
|
|
pref("dom.payment.provider.0.description", "marketplace.firefox.com");
|
|
pref("dom.payment.provider.0.uri", "https://marketplace.firefox.com/mozpay/?req=");
|
|
pref("dom.payment.provider.0.type", "mozilla/payments/pay/v1");
|
|
pref("dom.payment.provider.0.requestMethod", "GET");
|
|
#endif
|
|
|
|
// Enable window resize and move
|
|
pref("dom.always_allow_move_resize_window", true);
|
|
|
|
pref("plugin.allowed_types", "application/x-shockwave-flash,application/futuresplash");
|
|
|
|
pref("devtools.debugger.remote-enabled", true);
|
|
pref("devtools.debugger.force-local", true);
|
|
|
|
// The default for this pref reflects whether the build is capable of IPC.
|
|
// (Turning it on in a no-IPC build will have no effect.)
|
|
#ifdef XP_MACOSX
|
|
// i386 ipc preferences
|
|
pref("dom.ipc.plugins.enabled.i386", false);
|
|
pref("dom.ipc.plugins.enabled.i386.flash player.plugin", true);
|
|
// x86_64 ipc preferences
|
|
pref("dom.ipc.plugins.enabled.x86_64", true);
|
|
#else
|
|
pref("dom.ipc.plugins.enabled", true);
|
|
#endif
|
|
|
|
pref("places.database.growthIncrementKiB", 0);
|