Skip to content

Instantly share code, notes, and snippets.

@hubgit
Created January 19, 2025 21:34
Show Gist options
  • Save hubgit/e7d9ca209127ccb5c1934525ea71c0c4 to your computer and use it in GitHub Desktop.
Save hubgit/e7d9ca209127ccb5c1934525ea71c0c4 to your computer and use it in GitHub Desktop.
Customise Google search with a browser extension
{
"manifest_version": 3,
"name": "Customise Google",
"version": "0.0.1",
"content_scripts": [
{
"matches": ["https://www.google.com/search?*"],
"css": ["styles.css"]
}
]
}
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