Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Hide Google AI-Overviews",
"version": "1.5",
"description": "Remove AI Overviews from Google Search Instantly.",
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/www.google.com\/*",
"https:\/\/www.google.co.in\/*",
"https:\/\/www.google.co.uk\/*",
"https:\/\/www.google.ca\/*",
"https:\/\/www.google.com.au\/*",
"https:\/\/www.google.de\/*",
"https:\/\/www.google.fr\/*",
"https:\/\/www.google.it\/*",
"https:\/\/www.google.es\/*",
"https:\/\/appvector.io\/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"icons\/banner-image.png"
],
"matches": [
"<all_urls>"
]
}
],
"content_scripts": [
{
"matches": [
"https:\/\/*.google.com\/search*",
"https:\/\/*.google.co.in\/search*",
"https:\/\/*.google.co.uk\/search*",
"https:\/\/*.google.ca\/search*",
"https:\/\/*.google.com.au\/search*",
"https:\/\/*.google.de\/search*",
"https:\/\/*.google.fr\/search*",
"https:\/\/*.google.it\/search*",
"https:\/\/*.google.es\/search*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/appvector.io\/users\/get_token*"
],
"js": [
"content_token.js"
],
"run_at": "document_idle"
}
]
}