//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");