#define APO_URL addons.palemoon.org #define APO_AM_URL @APO_URL@/integration/addon-manager #define APO_AUS_ARGS reqVersion=%REQ_VERSION%&id=%ITEM_ID%&version=%ITEM_VERSION%&maxAppVersion=%ITEM_MAXAPPVERSION%&status=%ITEM_STATUS%&appID=%APP_ID%&appVersion=%APP_VERSION%&appOS=%APP_OS%&appABI=%APP_ABI%&locale=%APP_LOCALE%¤tAppVersion=%CURRENT_APP_VERSION%&updateType=%UPDATE_TYPE%&compatMode=%COMPATIBILITY_MODE% // ===| General |============================================================== pref("startup.homepage_welcome_url","http://www.palemoon.org/firstrun.shtml"); pref("app.vendorURL", "http://www.palemoon.org/"); // User Interface pref("browser.identity.ssl_domain_display", 1); //show domain verified SSL (blue) // ============================================================================ // ===| Application Update Service |=========================================== pref("app.update.url", "https://aus.palemoon.org/?application=%PRODUCT%&version=%VERSION%&arch=%BUILD_TARGET%&buildid=%BUILD_ID%&channel=%CHANNEL%"); // The time interval between the downloading of mar file chunks in the // background (in seconds) pref("app.update.download.backgroundInterval", 600); // Give the user x seconds to react before showing the big UI. default=48 hours pref("app.update.promptWaitTime", 172800); // ============================================================================ // ===| Add-ons Manager |====================================================== // Add-on window fixes pref("extensions.getMoreThemesURL", "https://@APO_AM_URL@/external/themes"); // Extensions Blocklist pref("extensions.blocklist.url","http://blocklist.palemoon.org/%VERSION%/blocklist.xml"); pref("extensions.blocklist.itemURL", "http://blocklist.palemoon.org/info/?id=%blockID%"); // Dictionary URL pref("browser.dictionaries.download.url", "https://@APO_URL@/dictionaries/"); pref("extensions.update.autoUpdateDefault", true); // Automatically update extensions by default pref("extensions.getAddons.maxResults", 10); pref("extensions.getAddons.cache.enabled", false); // ============================================================================ // ===| DOM |================================================================== // Set max script runtimes to sane values pref("dom.max_chrome_script_run_time", 90); //Some addons need ample time! pref("dom.max_script_run_time", 20); //Should be plenty for a page script to do what it needs // ============================================================================ // ===| Plugins |============================================================== pref("plugin.default.state", 2); //Allow plugins to run by default pref("plugin.expose_full_path", true); //Security: expose the full path to the plugin pref("dom.ipc.plugins.timeoutSecs", 20); // ============================================================================ // ===| Graphics |============================================================= pref("nglayout.initialpaint.delay", 300); // ============================================================================ // ===| Image |================================================================ pref("image.mem.max_ms_before_yield", 50); pref("image.mem.decode_bytes_at_a_time", 65536); //larger chunks // ============================================================================ // ===| Sync |================================================================= // Pale Moon Sync server URLs pref("services.sync.serverURL","https://pmsync.palemoon.org/sync/index.php/"); pref("services.sync.jpake.serverURL","https://keyserver.palemoon.org/"); pref("services.sync.termsURL", "http://www.palemoon.org/sync/terms.shtml"); pref("services.sync.privacyURL", "http://www.palemoon.org/sync/privacy.shtml"); pref("services.sync.statusURL", "https://pmsync.palemoon.org/status/"); pref("services.sync.syncKeyHelpURL", "http://www.palemoon.org/sync/help/recoverykey.shtml"); pref("services.sync.APILevel", 1); // FSyncMS doesn't support 'info/configuration' requests // ============================================================================ // ===| Misc. |================================================================ // Make sure we shortcut out of a11y to save walking unnecessary code pref("accessibility.force_disabled", 1); // ============================================================================ // ===| DevTools |============================================================= // Number of usages of the web console or scratchpad. // If this is less than 5, then pasting code into the web console or scratchpad is disabled pref("devtools.selfxss.count", 100); // ============================================================================