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