commit 565b5d0020d66fc8da2874015572fe907e6fd19c Author: Mike Perry mikeperry-git@torproject.org Date: Tue Sep 15 16:41:46 2015 -0700
fixup! TB4: Tor Browser's Firefox preference overrides.
This sets prefs for:
Bug #7446 - TorButton should not fixup .onion domains
Bug #16837 - Disable Firefox Hotfix updates
Bug #17046 - Event.timeStamp reveals startup time --- browser/app/profile/000-tor-browser.js | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/browser/app/profile/000-tor-browser.js b/browser/app/profile/000-tor-browser.js index c80c119..b94b6d1 100644 --- a/browser/app/profile/000-tor-browser.js +++ b/browser/app/profile/000-tor-browser.js @@ -14,6 +14,7 @@ pref("startup.homepage_override_url", ""); // Try to nag a bit more about updates: Pop up a restart dialog an hour after the initial dialog pref("app.update.promptWaitTime", 3600); pref("app.update.badge", true); +pref("extensions.hotfix.id", ""); // Bug 16837: Disable hotfix updates as they may cause compat issues
// Disable "Slow startup" warnings and associated disk history // (bug #13346) @@ -73,6 +74,7 @@ pref("browser.newtabpage.preload", false); // Bug 16316 - Avoid potential confus pref("browser.search.countryCode", "US"); // The next three prefs disable GeoIP search lookups (#16254) pref("browser.search.region", "US"); pref("browser.search.geoip.url", ""); +pref("browser.fixup.alternate.enabled", false); // Bug #16783: Prevent .onion fixups
// Fingerprinting pref("webgl.min_capability_mode", true); @@ -109,6 +111,7 @@ pref("device.sensors.enabled", false); pref("dom.enable_resource_timing", false); // Bug 13024: To hell with this API pref("dom.enable_user_timing", false); // Bug 16336: To hell with this API pref("privacy.resistFingerprinting", true); +pref("dom.event.highrestimestamp.enabled", true); // Bug #17046: "Highres" (but truncated) timestamps prevent uptime leaks
// Third party stuff pref("network.cookie.cookieBehavior", 1);
tbb-commits@lists.torproject.org