Get rid of the url on google search
Want to ask how to not display the url in google search on firefox browser in desktop xp and android
所有回复 (7)
Do you mean the line of green text in the individual search results displayed by Google??
Can you attach a screenshot?
- https://en.wikipedia.org/wiki/Screenshot
- https://support.mozilla.org/kb/how-do-i-create-screenshot-my-problem
- 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
Hi jscher2000,
Yes is the green text in the individual search results
Are there ways to get rid of those green url text?
Or hide them?
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
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?
You can right-click content and open the Inspector to see what selector an element that you want to hide has.
- https://developer.mozilla.org/Tools/Page_Inspector
- https://developer.mozilla.org/Tools/Page_Inspector/How_to
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.