Претражи подршку

Избегните преваре подршке. Никада од вас нећемо тражити да зовете или шаљете поруке на број или да делите личне податке. Пријавите сумњиве радње преко „Пријавите злоупотребу” опције.

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