搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

Latest Update BROKE new tabs being BLANK (about:blank)

  • 3 个回答
  • 4 人有此问题
  • 12 次查看
  • 最后回复者为 cor-el

more options

I just got the update on my Firefox to 41.0.1 (funnelcake June 2015). [Don't know what funnel cake is].

Anyway, new tabs are now opening with the Firefox new tab page. I previously had customized the newtab url to about:blank and that setting is still there, but apparently ignored.

I tried changing it to about:newtab, exit, restart, then change to about:blank and exit, restart again, this did not help.

I just got the update on my Firefox to 41.0.1 (funnelcake June 2015). [Don't know what funnel cake is]. Anyway, new tabs are now opening with the Firefox new tab page. I previously had customized the newtab url to about:blank and that setting is still there, but apparently ignored. I tried changing it to about:newtab, exit, restart, then change to about:blank and exit, restart again, this did not help.

所有回复 (3)

more options

New Tab Override (browser.newtab.url replacement) https://addons.mozilla.org/en-US/firefox/addon/new-tab-override/

With Firefox 41 (and higher), it's no longer possible to customize the page shown in a new tab via changing the preference browser.newtab.url in about.config. Because of the fact that hijackers abused the preference in the past, Mozilla decided to remove it (see bug 1118285). Fortunately, by removing it, Mozilla also introduced a new API to bring this functionality back to life as an add-on. This add-on allows the user to choose a certain page in a new tab.

more options

That is a bad decision. Almost every other browser has a way to set this, without adding in an ADD ON. Might see if I can go back to 40 and stop getting updates.

more options

Note that it is possible to do this without an extension via code in the mozilla.cfg file in the Firefox program folder. You can modify the newTabURL = "about:blank"; line to set a different new tab page.

//
var {classes:Cc,interfaces:Ci,utils:Cu} = Components;
var newTabURL = "about:blank";
Cu.import("resource:///modules/NewTabURL.jsm");
NewTabURL.override(newTabURL);
// copy the New Tab URL to browser.newtab.url for convenient checking the setting in about:config
pref("browser.newtab.url",NewTabURL.get());

You can use a mozilla.cfg file in the Firefox program folder to lock prefs or specify new (default) values.

Place a local-settings.js file in the defaults\pref folder where also the channel-prefs.js file is located to specify using mozilla.cfg.

pref("general.config.filename", "mozilla.cfg");
pref("general.config.obscure_value", 0);

See Configuration: