tor-browser

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

user.js (1138B)


      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 // Preferences file used by the raptor harness exclusively on android
      6 /* globals user_pref */
      7 
      8 // disk cache smart size is enabled in shipped apps
      9 user_pref("browser.cache.disk.smart_size.enabled", true);
     10 
     11 // Raptor's manifest.json contains the "geckoProfiler" permission, which is
     12 // not supported on Android. Ignore the warning about the unknown permission.
     13 user_pref("extensions.webextensions.warnings-as-errors", false);
     14 // disable telemetry bug 1639148
     15 user_pref("toolkit.telemetry.server", "");
     16 // Default Glean to "record but don't report" mode, and to never trigger
     17 // activity-based ping submission. Docs:
     18 // https://firefox-source-docs.mozilla.org/toolkit/components/glean/dev/preferences.html
     19 user_pref("telemetry.fog.test.localhost_port", -1);
     20 user_pref("telemetry.fog.test.activity_limit", -1);
     21 user_pref("telemetry.fog.test.inactivity_limit", -1);
     22 
     23 // Turn off update
     24 user_pref("app.update.disabledForTesting", true);