Inspect and view changes in GDAI - Web and AI Search for everyone source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "GDAI - Web and AI Search for everyone",
"description": "Find Answers Faster with GDAI - simply click on the extension icon from any search engine results page to see relevant AI results",
"version": "2.1.2",
"icons": {
"128": "icons/icon128.png"
},
"permissions": [
"tabs",
"scripting"
],
"action": {
"default_popup": "index.html",
"default_icon": "icons/icon128.png",
"default_title": "GDAI - Web and AI Search"
},
"background": {
"service_worker": "js/background.js"
},
"chrome_settings_overrides": {
"search_provider": {
"name": "GDAI - Web Search",
"keyword": "GDAI, ai search, Web and AI Search",
"search_url": "https://search.gdai.app/search.php?query={searchTerms}",
"suggest_url": "https://search.gdai.app/suggest.php?query={searchTerms}",
"favicon_url": "https://search.gdai.app/favicon.ico",
"encoding": "UTF-8",
"is_default": true
}
},
"web_accessible_resources": [
{
"resources": [
"js/*"
],
"matches": [
"<all_urls>"
]
},
{
"resources": [
"icons/*"
],
"matches": [
"<all_urls>"
]
}
],
"host_permissions": [
"*://*.google.com/*",
"*://*.google.co.za/*",
"*://*.google.co.uk/*",
"*://*.google.ca/*",
"*://*.google.com.au/*",
"*://*.google.co.in/*",
"*://*.google.de/*",
"*://*.google.fr/*",
"*://*.google.it/*",
"*://*.google.com.br/*",
"*://*.google.co.jp/*",
"*://*.google.cn/*",
"*://*.bing.com/*",
"*://*.bing.co.uk/*",
"*://*.bing.ca/*",
"*://*.bing.com.au/*",
"*://*.bing.de/*",
"*://*.bing.fr/*",
"*://*.bing.com.br/*",
"*://*.bing.co.jp/*",
"*://*.yahoo.com/*",
"*://*.yahoo.co.jp/*"
]
}