firefox-branding.js (1505B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 // This file contains branding-specific prefs. 6 7 // Set a generic, default URL that will be opened in a tab after an update. 8 // Typically, this will not be used; instead, the <update> element within 9 // each update manifest should contain attributes similar to: 10 // actions="showURL" 11 // openURL="https://blog.torproject.org/tor-browser-55a2-released" 12 pref("startup.homepage_override_url", "https://blog.torproject.org/category/applications"); 13 pref("app.update.url.details", "https://www.torproject.org/download/alpha/"); 14 pref("app.update.url.manual", "https://www.torproject.org/download/alpha/"); 15 pref("app.releaseNotesURL", "https://blog.torproject.org/new-alpha-release-tor-browser-%BB_VERSION_FOR_URLS%/"); 16 pref("app.releaseNotesURL.aboutDialog", "https://blog.torproject.org/new-alpha-release-tor-browser-%BB_VERSION_FOR_URLS%/"); 17 18 // The time interval between checks for a new version (in seconds) 19 pref("app.update.interval", 43200); // 12 hours 20 // The number of days a binary is permitted to be old 21 // without checking for an update. This assumes that 22 // app.update.checkInstallTime is true. 23 pref("app.update.checkInstallTime.days", 2); 24 // Number of usages of the web console. 25 // If this is less than 5, then pasting code into the web console is disabled 26 pref("devtools.selfxss.count", 5);