Image Downloader

Image Downloader

Using image downloader, locate and download all of the images on a website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_icon": {
      "32": "data/icons/icon-32.png",
      "38": "data/icons/icon-38.png",
      "128": "data/icons/icon-128.png",
      "512": "data/icons/icon-512.png"
    },
    "default_popup": "data/interface/index.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "homepage_url": "https://www.downloadhub.cloud/2023/02/downloader.html",
  "default_locale": "en",
  "description": "__MSG_applicationDescription__",
  "host_permissions": [
    "*://*/*"
  ],
  "icons": {
    "32": "data/icons/icon-32.png",
    "38": "data/icons/icon-38.png",
    "64": "data/icons/icon-64.png",
    "128": "data/icons/icon-128.png",
    "512": "data/icons/icon-512.png"
  },
  "manifest_version": 3,
  "name": "__MSG_applicationName__",
  "permissions": [
    "activeTab",
    "downloads",
    "storage",
    "webRequest",
    "scripting",
    "declarativeNetRequest"
  ],
  "short_name": "image",
  "version": "3.1.3",
  "web_accessible_resources": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "resources": [
        "data/icons/*.png"
      ]
    }
  ]
}