tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

firefox-branding.js (1412B)


      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://nightlies.tbb.torproject.org/");
     13 pref("app.update.url.details", "https://nightlies.tbb.torproject.org/nightly-builds/tor-browser-builds/");
     14 pref("app.update.url.manual", "https://nightlies.tbb.torproject.org/nightly-builds/tor-browser-builds/");
     15 pref("app.releaseNotesURL", "about:blank");
     16 pref("app.releaseNotesURL.aboutDialog", "about:blank");
     17 
     18 // The time interval between checks for a new version (in seconds)
     19 pref("app.update.interval", 14400); // 4 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);