Bulk Image Downloader

Bulk Image Downloader

Simple bulk image download extension, filter by resolution and file type, download photos from multiple tabs in one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "1.0.5",
  "default_locale": "en",
  "icons": {
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "64": "images/icon64.png",
    "128": "images/icon128.png"
  },
  "background": {
    "service_worker": "/background.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "/hotkeys.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_icon": "images/icon19.png",
    "default_title": "__MSG_name__",
    "name": "__MSG_name__",
    "default_popup": "popup.html"
  },
  "permissions": [
    "downloads",
    "storage",
    "contextMenus",
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "homepage_url": "https://tigerlovefish.com"
}