Inspect and view changes in SheetsGPT - AI Google Sheets Formula Maker 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": "SheetsGPT - AI Google Sheets Formula Maker",
"version": "1.3",
"description": "AI extension that uses AI to provide Sheets functions",
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "assets/sheetsgpt (16 x 16px).png",
"48": "assets/sheetsgpt (48 x 48 px).png",
"128": "assets/sheetsgpt (128 x 128 px).png"
}
},
"icons": {
"16": "assets/sheetsgpt (16 x 16px).png",
"48": "assets/sheetsgpt (48 x 48 px).png",
"128": "assets/sheetsgpt (128 x 128 px).png"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"*://www.sheets-gpt.com/*"
],
"js": [
"content_script.js"
]
}
],
"externally_connectable": {
"matches": [
"*://www.sheets-gpt.com/*"
]
},
"background": {
"service_worker": "dist/background.js",
"type": "module"
},
"content_security_policy": {
"sandbox": "sandbox allow-scripts; script-src 'self'"
}
}