Inspect and view changes in AI Insights (Beta Version) 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": "AI Insights (Beta Version)",
"version": "1.1.0",
"description": "ChatGPT insights on supported links & pages from Amazon (US, UK, DE), Spiegel, BBC, theGuardian, and Wikipedia in 180+ languages.",
"permissions": [
"storage",
"activeTab",
"scripting",
"contextMenus"
],
"action": {
"default_icon": {
"128": "on.png"
},
"default_popup": "popup.html"
},
"icons": {
"128": "on.png"
},
"web_accessible_resources": [
{
"resources": [
"off.png",
"on.png"
],
"matches": [
"https://*/*",
"http://*/*"
]
}
],
"content_scripts": [
{
"matches": [
"*://*.amazon.com/*",
"*://*.amazon.de/*",
"*://*.amazon.co.uk/*",
"*://*.spiegel.de/*",
"*://*.bbc.com/*",
"*://*.bbc.co.uk/*",
"*://*.theguardian.com/*",
"*://*.wikipedia.org/*"
],
"css": [
"styles.css"
],
"js": [
"content.js"
]
}
],
"background": {
"service_worker": "service-worker.js"
},
"minimum_chrome_version": "96"
}