IMGDownload

IMGDownload

Image downloader, one click to get all the pictures on the page and download them in batches

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "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"
  }
}