Inspect and view changes in Google Docs Image Viewer 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": "Google Docs Image Viewer",
"description": "Free your embedded Google Docs images!",
"author": "Gino Valente",
"permissions": [],
"browser_action": {
"default_title": "Google Docs Image Viewer",
"default_icon": {
"16": "images/default_icon16.png",
"32": "images/default_icon32.png",
"48": "images/default_icon48.png",
"128": "images/default_icon128.png"
}
},
"icons": {
"16": "images/default_icon16.png",
"32": "images/default_icon32.png",
"48": "images/default_icon48.png",
"128": "images/default_icon128.png"
},
"content_scripts": [
{
"all_frames": false,
"css": [
"style.css"
],
"js": [
"contentscript.js"
],
"matches": [
"https://docs.google.com/*"
],
"run_at": "document_end"
}
],
"manifest_version": 2,
"version": "1.1"
}