Easy AliExpress Image Downloader PRO

Downloads AliExpress Product Images
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "1.0.12",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "Images/icon_16.png",
    "128": "Images/icon_128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/libs/jquery.min.js",
      "scripts/libs/jszip.min.js",
      "scripts/downloadImages.js",
      "scripts/config.js",
      "scripts/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "Images/icon_19.png",
      "38": "Images/icon_38.png"
    },
    "default_title": "AliExpress Image Downloader",
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.aliexpress.com/*",
        "*://*.aliexpress.ru/*"
      ],
      "js": [
        "scripts/libs/jquery.min.js",
        "scripts/libs/bootstrap.min.js",
        "scripts/libs/arrive.min.js",
        "scripts/libs/FileSaver.js",
        "scripts/common.js",
        "scripts/config.js",
        "scripts/contentscript.js"
      ],
      "css": [
        "styles/bootstrap.min.css",
        "styles/product_page.css",
        "styles/animate.css",
        "styles/balloon.min.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "styles/*",
    "Images/*"
  ],
  "permissions": [
    "*://*.aliexpress.com/*",
    "storage",
    "downloads",
    "webRequest",
    "webRequestBlocking"
  ]
}