Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

搜尋 Mozilla 技術支援網站

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

Learn More

how do I get rid of the restore previous session option on firefox home page/start up page ?

  • 1 回覆
  • 6 有這個問題
  • 5 次檢視
  • 最近回覆由 cor-el

more options

how do I get rid of the restore previous session option on firefox home page/start up page ?

how do I get rid of the restore previous session option on firefox home page/start up page ?

所有回覆 (1)

more options

You can hide the "Restore Previous Session" box with code in userContent.css

You can use the ChromEdit Plus or Stylish extension to have easier access to the customization files.


@-moz-document url(about:home){
/* hide sessionRestore container on the about:home page */
#sessionRestoreContainer { display: none !important; }
}