Examine source code of Docs / Slides Image Downloader

Inspect and view changes in Docs / Slides 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",
  "name": "__MSG_appTitle__",
  "description": "__MSG_appDesc__",
  "version": "1.2",
  "manifest_version": 3,
  "default_locale": "fr",
  "content_scripts": [
    {
      "matches": [
        "*://docs.google.com/document/*",
        "*://docs.google.com/presentation/*"
      ],
      "js": [
        "addonDownload.js",
        "snackbar.min.js"
      ],
      "css": [
        "snackbar.min.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "64": "icons/64.png",
    "128": "icons/128.png"
  }
}