当サイトはユーザー体験を改善するためのメンテナンスを実施中に機能が制限される予定です。記事を読んでもあなたの問題が解決せず質問をしたい場合は、Twitter の @FirefoxSupport、Reddit の /r/firefox で、サポートコミュニティが皆さんを助けようと待機しています。

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.

詳しく学ぶ

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

Why does a google search bar show up when I open a new tab in Firefox version 31?

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

more options

When I open a new tab, a google search bar opens up. Like most people, I hate google, almost as much as I hate microsuck.

When I open a new tab, a google search bar opens up. Like most people, I hate google, almost as much as I hate microsuck.

すべての返信 (2)

more options

You can remove the google search bar by clicking the grey square (it has many little squares in it) this will hide the new tab page however this will also remove the sites you have recently been on.

if you want to get rid of google completely there 'may' be 2 search boxes at the top, the big one and then the small on for your search engine (google by default i believe), you can change the search engine or remove that little search bar completely by clicking on the Firefox menu (the symbol with 3 grey lines at the top right) then click on customise and then drag the google search box away, then click exit customisation :)

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

more options

You can add code to the userContent.css file to hide the search bar on the about:newtab page.


@-moz-document url(about:newtab){
#newtab-margin-top, #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.

You can use this button to go to the currently used Firefox profile folder:

  • Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
  • Create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
  • Use a plain text editor like Notepad to create a (new) userContent.css file in the chrome folder (file name is case sensitive)
  • Paste the code in the userContent.css file in the editor window
  • Make sure that you select "All files" and not "Text files" when you save the file via "Save file as" in the text editor as userContent.css. Otherwise Windows may add a hidden .txt file extension and you end up with a not working userContent.css.txt file