IMGDownload

Image downloader, one click to get all the pictures on the page and download them in batches
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "__MSG_extension_name__",
  "version": "0.0.3",
  "description": "__MSG_extension_description__",
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "action": {
    "default_title": "打开仪表盘"
  },
  "icons": {
    "16": "$_logo_16.png",
    "32": "$_logo_32.png",
    "48": "$_logo_48.png",
    "128": "$_logo_128.png"
  },
  "default_locale": "en",
  "permissions": [
    "favicon",
    "contextMenus",
    "storage",
    "tabs",
    "downloads"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end",
      "all_frames": false,
      "js": [
        "contentScript_0.js"
      ],
      "css": []
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}