Examine source code of Google Docs Image Downloader

Inspect and view changes in Google Docs Image Downloader 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 Docs Image Downloader",
  "version": "1.0.1",
  "description": "Download all images from Google Docs with one click",
  "permissions": [],
  "action": {
    "default_popup": "views/popup.html"
  },
  "icons": {
    "48": "images/icon.png",
    "64": "images/icon.png",
    "128": "images/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://docs.google.com/document/*"
      ],
      "js": [
        "js/contentScript.js"
      ]
    }
  ]
}