Easy AliExpress Captcha Solver

Easy AliExpress Captcha Solver

Solves AliExpress Captchas Automatically For You

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "0.0.16",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "32": "images/icon-32.png",
      "38": "images/icon-38.png"
    },
    "default_title": "__MSG_appName__",
    "default_popup": "popup.html"
  },
  "permissions": [
    "http://*.aliexpress.com/*",
    "https://*.aliexpress.com/*",
    "http://*.alibaba.com/*",
    "https://*.alibaba.com/*",
    "https://frosty-leaf-f252.aliaffgen.workers.dev/",
    "https://app.dropified.com/*",
    "background",
    "notifications",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.aliexpress.com/*"
      ],
      "js": [
        "bower_components/jquery/dist/jquery.min.js",
        "bower_components/moment/moment.js",
        "bower_components/waypoints/lib/jquery.waypoints.min.js",
        "bower_components/arrive/minified/arrive.min.js",
        "scripts/common.js",
        "scripts/contentscript.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    },
    {
      "matches": [
        "*://shoppingcart.aliexpress.com/*"
      ],
      "css": [
        "bower_components/bootstrap/dist/css/bootstrap.min.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/*"
  ]
}