본 사이트는 여러분의 사용자 경험을 개선하기 위해 유지 보수를 진행하는 동안 기능이 제한됩니다. 도움말로 문제가 해결되지 않고 질문을 하고 싶다면 Twitter의 @FirefoxSupport 및 Reddit의 /r/firefox 채널을 활용하세요.

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

How do I get rid of the Google malware at the top of my New Tab Page?

  • 3 답장
  • 2 이 문제를 만남
  • 1 보기
  • 최종 답변자: floof

more options

I recently installed the latest Aurora version of FF, and to my horror I realized there is now an ugly megacorporation's logo at the top of my New Tab Page.

Clearly this is some kind of malware, or some setting that needs to be turned off... I looked in the Customization category but I haven't found anything about this yet. Is there a setting in about:config?

http://i.imgur.com/4gKICOH.png

Also apparently there will be ads in the New Tab Page but that's another terrifying question for another day.

I recently installed the latest Aurora version of FF, and to my horror I realized there is now an ugly megacorporation's logo at the top of my New Tab Page. Clearly this is some kind of malware, or some setting that needs to be turned off... I looked in the Customization category but I haven't found anything about this yet. Is there a setting in about:config? http://i.imgur.com/4gKICOH.png Also apparently there will be ads in the New Tab Page but that's another terrifying question for another day.

모든 댓글 (3)

more options

That is a new feature for the NewTab page on Firefox 31+ versions.

You can use this UserStyle - https://userstyles.org/styles/103765/fx-31-about-newtab-hide-the-search-bar - to hide that search container after installing the Stylish extension.

more options

Add code to the userContent.css file.


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

The customization files userContent.css (websites) and userChrome.css (user interface) 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

글쓴이 cor-el 수정일시

more options

That's pretty awesome. I don't know what advantage it has over Styler yet (besides avoiding the need for an extra plugin/RAM usage), but I'll have to keep it in mind.