Inspect and view changes in Save images from Google Docs 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,
"author": "artem.ibragimov",
"name": "Save images from Google Docs",
"description": "A browser extension to easily save images from Google Docs",
"version": "0.0.2",
"permissions": [
"downloads"
],
"icons": {
"16": "./asset/i16.png",
"48": "./asset/i48.png",
"128": "./asset/i128.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://trianglify.io/",
"https://docs.google.com/*"
],
"js": [
"main.js"
]
}
]
}