搜索 | 用户支持

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

详细了解

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