Image Downloader - Save photos and pictures

Find the images you need on any website, pick them, and download them individually or in bulk by selecting all.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "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": "1.1.2",
  "web_accessible_resources": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "resources": [
        "data/icons/*.png"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}