Inspect and view changes in Sheets to JSON 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",
"name": "Sheets to JSON",
"version": "1.0.1",
"manifest_version": 3,
"icons": {
"128": "icon/128.png"
},
"action": {
"default_popup": "src/popup.html"
},
"content_scripts": [
{
"matches": [
"https://docs.google.com/spreadsheets/d/*"
],
"js": [
"src/content.js"
]
}
],
"background": {
"service_worker": "src/background.js"
}
}