Bulk Image Downloader From Url List

Bulk Image Downloader From Url List

A Chrome extension to bulk download images from a list of image URLs. Schedule downloads, filter by image type, save in folder etc

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Bulk Image Downloader From Url List",
  "version": "1.4",
  "description": "A Chrome extension to bulk download images from a list of image URLs. Schedule downloads, filter by image type, save in folder etc",
  "permissions": [
    "downloads",
    "storage",
    "alarms"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "128": "images/icon.jpg"
    }
  },
  "icons": {
    "128": "images/icon.jpg"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "popup.js"
      ]
    }
  ],
  "options_page": "options.html"
}