搜索 | 用户支持

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

详细了解

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.