搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

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

  • 2 回覆
  • 2 有這個問題
  • 9 次檢視
  • 最近回覆由 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?

所有回覆 (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.