Photos Downloader

Photos Downloader

the purpose of this extension "photos downloader" is making it easy to download product images from aliexpress it will be soon able to download from the other ecomerce sites that contain many products images like walmart, mazon, etc.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Photos Downloader",
  "version": "3.1.0",
  "browser_action": {
    "default_title": "Photos Downloader",
    "default_popup": "popups/1.html"
  },
  "icons": {
    "48": "icons/iconX48.png",
    "96": "icons/iconX96.png"
  },
  "description": "this is the most helpful, compatible and fastest extension that helps you download product images fatser from many stores such as aliexpress, walmart, amazon.",
  "content_scripts": [
    {
      "matches": [
        "*://*.walmart.com/ip/*"
      ],
      "js": [
        "scripts/walmart.js"
      ]
    },
    {
      "matches": [
        "*://*.amazon.com/*"
      ],
      "js": [
        "scripts/amazon.js"
      ]
    },
    {
      "matches": [
        "*://*.aliexpress.com/item/*"
      ],
      "js": [
        "scripts/aliexpress.js"
      ]
    }
  ],
  "permissions": [
    "menus"
  ]
}