Inspect and view changes in Google Slide Image Zoom 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": "Google Slide Image Zoom",
"description": "Expand, Enlarge Images, Graphics, Table for Google Slide, Google Doc, Google Sheet",
"version": "1.8",
"icons": {
"128": "icons/icon-128.png"
},
"content_scripts": [
{
"matches": [
"https://docs.google.com/presentation/*",
"https://docs.google.com/spreadsheets/*",
"https://docs.google.com/document/*"
],
"js": [
"script.js"
],
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"/icons/zoom.svg"
],
"matches": [
"<all_urls>"
]
}
]
}