Join the Mozilla’s Test Days event from Dec 2–8 to test the new Firefox address bar on Firefox Beta 134 and get a chance to win Mozilla swag vouchers! 🎁

Mozilla 도움말 검색

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

자세히 살펴보기

Local file as new tab page

  • 3 답장
  • 0 이 문제를 만남
  • 5 보기
  • 최종 답변자: cor-el

more options

I have used a custom html file as my homepage for years and while I can get Firefox to accept it as my homepage, I can't for the life of me figure out how to make it so when I open a new tab it goes straight to said custom page. I've tried multiple different add-ons for Firefox and none have worked, and I've checked multiple different support questions here and am still unable to figure this out.

I have used a custom html file as my homepage for years and while I can get Firefox to accept it as my homepage, I can't for the life of me figure out how to make it so when I open a new tab it goes straight to said custom page. I've tried multiple different add-ons for Firefox and none have worked, and I've checked multiple different support questions here and am still unable to figure this out.

모든 댓글 (3)

more options

Have you tried this one? I don't know whether it will do what you want.

https://addons.mozilla.org/firefox/addon/new-tab-override

more options

Terry said

Have you tried this one? I don't know whether it will do what you want. https://addons.mozilla.org/firefox/addon/new-tab-override

I have tried that one, but it doesn't work. Trying to link directly to the file gives this message "Due to Firefox restrictions, it is not possible for extensions to access local files." and if I just set it to my current homepage I get "Only home pages starting with http:// or https:// are supported." which doesn't work for me because my homepage is a local html file. If I do use the local file option, it partially loads, just without any of the CSS so I just get a white screen with a few hyperlinks.

more options

You can possibly do this directly via autoconfig.cfg and autoconfig.js.

This code still works for me.

  • /questions/1401382 Blank new tab when using file:/// for homepage with newtabhomepage addon

Firefox appears to 'esmify' automatically in case of known .jsm files that have been converted.


Content of autoconfig.cfg:

// autoconfig.cfg start with a comment line; autoconfig.js => pref("general.config.sandbox_enabled", false);
try {
  Components.utils.import("resource:///modules/AboutNewTab.jsm");
  AboutNewTab.newTabURL = "file:///xxx";
} catch(e){Components.utils.reportError(e);} // Browser Console

Content of autoconfig.js:

//
pref("general.config.filename", "autoconfig.cfg");
pref("general.config.obscure_value", 0);
pref("general.config.sandbox_enabled", false);

글쓴이 cor-el 수정일시