Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Ulteriori informazioni

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

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

  • 1 risposta
  • 6 hanno questo problema
  • 5 visualizzazioni
  • Ultima risposta di 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 ?

Tutte le risposte (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; }
}