Ecommerce Image Downloader Plus

Ecommerce Image Downloader Plus

Download Image from ecommerce websites (Amazon, Ebay, Walmart, Shopee...)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Ecommerce Image Downloader Plus",
  "description": "Download Image from ecommerce websites (Amazon, Ebay, Walmart, Shopee...)",
  "version": "2.6",
  "minimum_chrome_version": "88",
  "manifest_version": 3,
  "content_security_policy": {
    "extension_pages": "script-src 'self'; style-src 'self'; img-src 'self'; media-src 'self'; object-src 'self'"
  },
  "host_permissions": [
    "http://localhost:8188/"
  ],
  "optional_permissions": [
    "storage"
  ],
  "action": {
    "default_icon": "/icon_128.png",
    "default_popup": "/views/popup.html"
  },
  "icons": {
    "16": "/icon_16.png",
    "48": "/icon_48.png",
    "128": "/icon_128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/images/open.png",
        "/images/download.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "defaults.js"
  },
  "content_scripts": [
    {
      "js": [
        "/lib/jquery.js",
        "/scripts/send_images.js"
      ],
      "matches": [
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ]
}