Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

Sök i support

Akta dig för supportbedrägerier: Vi kommer aldrig att be dig att ringa eller skicka ett sms till ett telefonnummer eller dela personlig information. Rapportera misstänkt aktivitet med alternativet "Rapportera missbruk".

Läs mer

Is there a way to disable the clear browsing history when closing option? Or disable clear browsing history?

  • 2 svar
  • 2 har detta problem
  • 1 visning
  • Senaste svar av cor-el

more options

Is there a way to disable the clear browsing history when closing option? Or disable clear browsing history?

Is there a way to disable the clear browsing history when closing option? Or disable clear browsing history?

Alla svar (2)

more options

Not saving History (Tools -> options -> Privacy), make sure you are saving your history in the privacy options, and also not clearing in "Settings for Clearing History", see

You can uncheck the "Clear history when Firefox closes" but you still have the the "Clear recent history" (formerly "Clear history") loose canon on the Tools menu, best to make sure that the only thing you clear when you exit Firefox is the browser cache.

more options

A way to do that is to lock the corresponding privacy.cpd and privacy.clearOnShutdown pref(s) on the about:config page via a mozilla.cfg file in the Firefox program folder (C:\Program Files\Mozilla Firefox\).

Be aware that it is still possible to clear the history in the sidebar and the History/Bookmarks Manager (History > Show All History)


//first comment line in mozilla.cfg required
lockPref("privacy.clearOnShutdown.history", false);
lockPref("privacy.cpd.history", false);

You can place a file local-settings.js in the defaults\pref folder with this content:

pref("general.config.filename", "mozilla.cfg");
pref("general.config.obscure_value", 0);

If you set the obscure value to 0 then no byte-shift is required.