Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Mozilla サポートの検索

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

Feature request: setting for color of new tab

  • 5 件の返信
  • 2 人がこの問題に困っています
  • 11 回表示
  • 最後の返信者: cor-el

more options

So the user can customize it with a value (hex). The current about:config command is too general, as that one will also change the color of websites that allow customized background colors. (meaning that sadly the current about:config command will change both new tab AND the background color of specific websites.)

So the user can customize it with a value (hex). The current about:config command is too general, as that one will also change the color of websites that allow customized background colors. (meaning that sadly the current about:config command will change both new tab AND the background color of specific websites.)

すべての返信 (5)

more options

Not sure what it is you are looking for. There are many add-ons that change colors for tabs, websites, and other things.

more options

I mean when I press "ctrl+T", the page is white. I wanna change that color. Haven't found an addon that changes only that, without affecting websites aswell.

more options

"ctrl+T" opens the about:newtab page, which the user can set.

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.

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

This is also available using Classic Theme Restorer (Customize Australis) {web link} Restore squared tabs, appmenu, add-ons bar, small button view and more on Australis UI (Windows/MacOSX/Linux + Fx 29+).

more options

Very nice addon! :D (the "New Tab Override") But it seems I cannot just choose a color, I have to make my own website with a blue picture/load the picture from my HDD everytime... :P But ok! :)

この投稿は Dan により に変更されました

more options

Note that you can modify CSS rules for about:newtab via code in userContent.css.

Add code to the userContent.css file.


@-moz-document url(about:newtab){
 #newtab-margin-top,
 #newtab-margin-bottom,
 #newtab-search-container { display:none!important; }
}

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.