Join us and the lead editor of IRL, Mozilla's multi-award-winning podcast, for a behind-the-scenes look at the pod and to contribute your ideas for the next season, themed: "AI and ME." Mark your calendar and join our Community Call on Wednesday, Aug 7, 17:00–17:45 UTC. See you there!

Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Tìm hiểu thêm

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

  • 3 trả lời
  • 4 gặp vấn đề này
  • 12 lượt xem
  • Trả lời mới nhất được viết bởi 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.

Tất cả các câu trả lời (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: