AliExpress Finder Coupons

AliExpress Finder Coupons

An extension for your browser that automatically searches for coupons on AliExpress

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "browser_action": {
    "default_title": "__MSG_extName__"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "css": [
        "styles/contentscript.css"
      ],
      "js": [
        "scripts/contentscript.js"
      ],
      "matches": [
        "https://*.aliexpress.com/*",
        "http://*.aliexpress.com/*",
        "https://alicoupons.org/*"
      ],
      "run_at": "document_end"
    },
    {
      "all_frames": true,
      "css": [
        "styles/contentscript.css"
      ],
      "js": [
        "scripts/contentscript_on_pages.js"
      ],
      "matches": [
        "https://*.aliexpress.com/*",
        "http://*.aliexpress.com/*",
        "https://alicoupons.org/*"
      ],
      "run_at": "document_end"
    }
  ],
  "default_locale": "ru",
  "description": "__MSG_extDescr__",
  "icons": {
    "128": "images/128x128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*"
  ],
  "version": "0.0.5",
  "web_accessible_resources": [
    "images/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}