Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

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