為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

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: