aboutsummaryrefslogtreecommitdiffstats
path: root/modules/hm/sils/firefox/user-overrides.js
blob: f5ff8d6164f60171a4e12043cae315256ac0ba93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//custom things for the user.js
user_pref("_user.js.parrot", "overrides section syntax error");
//Fingerprinting resistance doesn't make sense in any browser other than Tor.
//user_pref("privacy.window.maxInnerWidth", 1000);
//user_pref("privacy.window.maxInnerHeight", 1900);
user_pref("privacy.resistFingerprinting", true);
user_pref("privacy.resistFingerprinting.letterboxing", false);

/* override recipe: enable session restore ***/
//user_pref("browser.startup.page", 3); // 0102
  // user_pref("browser.privatebrowsing.autostart", false); // 0110 required if you had it set as true
user_pref("places.history.enabled", true); // 0862 required if you had it set as false
user_pref("browser.sessionstore.privacy_level", 0); // 1021 optional [to restore extras like cookies/formdata]
user_pref("privacy.clearOnShutdown.history", false); // 2803
user_pref("privacy.clearOnShutdown.cookies", false); // 2803 optional
user_pref("privacy.clearOnShutdown.formdata", false); // 2803 optional
user_pref("privacy.cpd.history", false); // 2804 to match when you use Ctrl-Shift-Del
  // user_pref("privacy.cpd.cookies", false); // 2804 optional
  // user_pref("privacy.cpd.formdata", false); // 2804 optional
user_pref("network.cookie.lifetimePolicy", 0);
// I want to use Google Earth sometimes.
user_pref("webgl.disabled", false);
user_pref("_user.js.parrot", "overrides section successful");