fxbrit 2021-05-12 00:36:23 +02:00
commit c78c50fbef
1 changed files with 0 additions and 32 deletions

View File

@ -1,32 +0,0 @@
# Questions:
The questions [open] and [disscussion] are discussed in [the faq issue](https://gitlab.com/librewolf-community/settings/-/issues/50).
* How do I toggle the proton ui? [open]
* How do I enable DRM? [open]
* How do I enable microphone / webcam? [open]
* How do I make LibreWolf remember all the cookies? [discussion]
* How do I enable dark theming on websites such as duckduckgo.com? [open]
* How do I switch to another language, say, to brazil/portuguese? [open]
# How do I make LibreWolf remember all the cookies?
In your librewolf.overrides.cfg, add the following:
// cookies: No longer forget any website data..
pref("network.cookie.cookieBehavior", 1);
pref("privacy.sanitize.sanitizeOnShutdown", false);
pref("privacy.clearOnShutdown.cookies", false);
pref("privacy.clearOnShutdown.cache", false);
pref("privacy.clearOnShutdown.downloads", false);
pref("privacy.clearOnShutdown.history", false);
pref("privacy.clearOnShutdown.formData", false);
pref("privacy.clearOnShutdown.offlineApps", false);
pref("privacy.clearOnShutdown.sessions", false);
pref("privacy.clearOnShutdown.siteSettings", false);