Important Notice: We're experiencing email notification issues. If you've posted a question in the community forums recently, please check your profile manually for responses while we're working to fix this.

On Monday the 3rd of March, around 5pm UTC (9am PT) users may experience a brief period of downtime while one of our underlying services is under maintenance.

Pesquisar no apoio

Evite burlas no apoio. Nunca iremos solicitar que telefone ou envie uma mensagem de texto para um número de telefone ou que partilhe informações pessoais. Por favor, reporte atividades suspeitas utilizando a opção "Reportar abuso".

Saber mais

Local file as new tab page

  • 3 respostas
  • 0 têm este problema
  • 6 visualizações
  • Última resposta por 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.

Todas as respostas (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);

Modificado por cor-el a