Skip to content

Instantly share code, notes, and snippets.

@paveljurca
Created February 15, 2018 23:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paveljurca/6fe2054eecfe17a38c5a6f6176f6fb27 to your computer and use it in GitHub Desktop.
Save paveljurca/6fe2054eecfe17a38c5a6f6176f6fb27 to your computer and use it in GitHub Desktop.
Firefox keep history on close
// Copy to %userprofile%\AppData\Local\Mozilla\Firefox\Profiles\*.default folder
// to keep browsing history on close
user_pref("privacy.clearOnShutdown.cache", false)
user_pref("privacy.clearOnShutdown.cookies", false)
user_pref("privacy.clearOnShutdown.downloads", false)
user_pref("privacy.clearOnShutdown.formdata", false)
user_pref("privacy.clearOnShutdown.history", false)
user_pref("privacy.clearOnShutdown.sessions", false)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment