... |
... |
@@ -52,6 +52,9 @@ pref("browser.sessionstore.privacy_level", 2); |
52
|
52
|
// Use the in-memory media cache and increase its maximum size (#29120)
|
53
|
53
|
pref("browser.privatebrowsing.forceMediaMemoryCache", true);
|
54
|
54
|
pref("media.memory_cache_max_size", 16384);
|
|
55
|
+// Disable restore in case of crash (tor-browser#41503)
|
|
56
|
+// This should not be needed in PBM, but we added it anyway like other options.
|
|
57
|
+pref("browser.sessionstore.resume_from_crash", false);
|
55
|
58
|
|
56
|
59
|
// Enable HTTPS-Only mode (tor-browser#19850)
|
57
|
60
|
pref("dom.security.https_only_mode", true);
|
... |
... |
@@ -454,8 +457,8 @@ pref("browser.onboarding.newtour", "welcome,privacy,tor-network-9.0,circuit-disp |
454
|
457
|
pref("browser.onboarding.updatetour", "learn-more");
|
455
|
458
|
pref("browser.onboarding.skip-tour-button.hide", true);
|
456
|
459
|
|
457
|
|
-// prefs to disable jump-list entries in the taskbar on Windows (see bug #12885)
|
458
|
460
|
#ifdef XP_WIN
|
|
461
|
+// prefs to disable jump-list entries in the taskbar on Windows (see bug #12885)
|
459
|
462
|
// this pref changes the app's set AUMID to be dependent on the profile path, rather than
|
460
|
463
|
// attempting to read it from the registry; this is necessary so that the file generated
|
461
|
464
|
// by the jumplist system can be properly deleted if it is disabled
|
... |
... |
@@ -464,6 +467,10 @@ pref("browser.taskbar.lists.enabled", false); |
464
|
467
|
pref("browser.taskbar.lists.frequent.enabled", false);
|
465
|
468
|
pref("browser.taskbar.lists.tasks.enabled", false);
|
466
|
469
|
pref("browser.taskbar.lists.recent.enabled", false);
|
|
470
|
+
|
|
471
|
+// Do not re-open Tor Browser automatically after reboots when "Restart apps" is
|
|
472
|
+// enabled (tor-browser#41503)
|
|
473
|
+pref("toolkit.winRegisterApplicationRestart", false);
|
467
|
474
|
#endif
|
468
|
475
|
|
469
|
476
|
// If we are bundling fonts, whitelist those bundled fonts, and restrict system fonts to a selection.
|