Image Batch Download Master - Little Bee

Image Batch Download Master - Little Bee

A free Chrome extension, streamlines image analysis, filtering, and efficient batch downloads, enhancing work productivity.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_title__",
  "description": "__MSG_desc__",
  "version": "0.0.1",
  "default_locale": "en",
  "manifest_version": 3,
  "icons": {
    "16": "img/logo-16.png",
    "32": "img/logo-34.png",
    "48": "img/logo-48.png",
    "128": "img/logo-128.png"
  },
  "action": {
    "default_popup": "pages/popup.html",
    "default_icon": "img/logo-16.png"
  },
  "background": {
    "service_worker": "assets/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "assets/contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/logo-16.png",
        "img/logo-34.png",
        "img/logo-48.png",
        "img/logo-128.png"
      ],
      "matches": []
    },
    {
      "resources": [
        "pages/workspace.html"
      ],
      "matches": []
    },
    {
      "resources": [
        "assets/workspace.js"
      ],
      "matches": []
    }
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "permissions": [
    "storage",
    "activeTab",
    "tabs",
    "webRequest",
    "webNavigation",
    "downloads"
  ]
}