Skip to content

Instantly share code, notes, and snippets.

@castexyz
Created November 3, 2021 10:43
Show Gist options
  • Save castexyz/d6b3aae98a8feec1625d881586ff1ede to your computer and use it in GitHub Desktop.
Save castexyz/d6b3aae98a8feec1625d881586ff1ede to your computer and use it in GitHub Desktop.
Arkenfox personal overrides
/* 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); // 1003 optional [to restore 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
// enable location bar using search
user_pref("keyword.enabled", true);
//disable letterbox
user_pref("privacy.resistFingerprinting.letterboxing", false);
// Store cookies and history
user_pref("privacy.clearOnShutdown.cookies", false);
user_pref("privacy.clearOnShutdown.history", false);
// enable DRM and let me use netflix/spotify
user_pref("media.eme.enabled", true); // 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment