Created
January 19, 2025 21:34
-
-
Save hubgit/e7d9ca209127ccb5c1934525ea71c0c4 to your computer and use it in GitHub Desktop.
Customise Google search with a browser extension
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"manifest_version": 3, | |
"name": "Customise Google", | |
"version": "0.0.1", | |
"content_scripts": [ | |
{ | |
"matches": ["https://www.google.com/search?*"], | |
"css": ["styles.css"] | |
} | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div[data-text-ad='1'] { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment