Aliexpress Coupons

Aliexpress Coupons

Easy way to apply discount coupons on Aliexpress

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "/icons/icon128.png",
    "default_popup": "/default_popup/popup.html",
    "default_title": "__MSG_appButtonDesc__"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "content.js"
      ],
      "matches": [
        "https://*.aliexpress.com/*",
        "https://*.aliexpress.ru/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "permissions": [
    "storage",
    "https://*.aliexpress.com/*",
    "https://*.aliexpress.ru/*",
    "webRequest",
    "webRequestBlocking"
  ],
  "version": "1.0.0.1",
  "web_accessible_resources": [
    "/img/loading.gif"
  ]
}