Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Learn More

Get rid of the url on google search

  • 7 Antworten
  • 1 hat dieses Problem
  • 2 Aufrufe
  • Letzte Antwort von 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

Alle Antworten (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.