Bulk Image Downloader

Bulk Image Downloader

Discover, explore, and retrieve all images from a webpage. Additionally, perform bulk downloads based on specified image filters.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Discover, explore, and retrieve all images from a webpage. Additionally, perform bulk downloads based on specified image filters.",
  "version": "2.2.1",
  "manifest_version": 3,
  "name": "Bulk Image Downloader",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "images/logo.png"
  },
  "icons": {
    "128": "images/logo.png"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "downloads",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "devtools_page": "devtools.html",
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "logo.png"
      ],
      "matches": []
    }
  ]
}