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 ?
how do I get rid of the restore previous session option on firefox home page/start up page ?
การตอบกลับทั้งหมด (1)
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.
- ChromEdit Plus: http://webdesigns.ms11.net/chromeditp.html
@-moz-document url(about:home){ /* hide sessionRestore container on the about:home page */ #sessionRestoreContainer { display: none !important; } }