Download Amazon images

Download Amazon images

Download Amazon images by product link

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Download Amazon images",
  "version": "0.1.9",
  "description": "Download Amazon images by product link",
  "manifest_version": 3,
  "permissions": [
    "downloads",
    "storage",
    "commands",
    "activeTab",
    "scripting"
  ],
  "content_scripts": [
    {
      "js": [
        "lib/jquery.js",
        "lib/html2canvas.min.js",
        "inject.js"
      ],
      "run_at": "document_idle",
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "commands": {
    "take-screenshot-manual": {
      "suggested_key": "Ctrl+I",
      "description": "Take screenshot manually"
    }
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "img/Amazon Logo.png",
      "32": "img/Amazon Logo.png",
      "48": "img/Amazon Logo.png",
      "128": "img/Amazon Logo.png"
    }
  },
  "icons": {
    "16": "img/Amazon Logo.png",
    "32": "img/Amazon Logo.png",
    "48": "img/Amazon Logo.png",
    "128": "img/Amazon Logo.png"
  }
}