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!

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

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; }
}