Batch Image Downloader

Batch Image Downloader

Download all images from page in one click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "service_worker": "serviceWorker.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "lib/jquery-3.4.1.min.js",
        "lib/arrive.min.js",
        "img_count.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "js": [
        "contents.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "icons": {
    "128": "icon-64.png"
  },
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "permissions": [
    "storage",
    "tabs",
    "downloads",
    "declarativeNetRequest"
  ],
  "version": "11.1",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}