搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

Get rid of the url on google search

  • 7 回覆
  • 1 有這個問題
  • 3 次檢視
  • 最近回覆由 cor-el

more options

Want to ask how to not display the url in google search on firefox browser in desktop xp and android

Want to ask how to not display the url in google search on firefox browser in desktop xp and android

所有回覆 (7)

more options

Do you mean the line of green text in the individual search results displayed by Google??

more options

Can you attach a screenshot?

  • Use a compressed image type like PNG or JPG to save the screenshot
  • Make sure that you do not exceed the maximum size of 1 MB
more options

Hi jscher2000,

Yes is the green text in the individual search results

Are there ways to get rid of those green url text?

more options

Or hide them?

more options

You could use a custom style rule to hide them. What about the other links on that line, for example:

  • Company information link (some results)
  • Triangle drop-down menu
    • Cached
    • Similar
more options

jscher,

how do you do custom style rule to alter how the website on what to display on the browser? Want to get rid of the url text including the cache and similar on the triangle

And on wensite how to you do custom rule to NOT display the title logo and picture?

more options

You can right-click content and open the Inspector to see what selector an element that you want to hide has.


Add this code to the userContent.css file to hide the green text.


@-moz-document domain(www.google.com){
  #search :-moz-any(div._SWb,div._Ck) { 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.