Created
February 15, 2018 23:15
-
-
Save paveljurca/6fe2054eecfe17a38c5a6f6176f6fb27 to your computer and use it in GitHub Desktop.
Firefox keep history on close
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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