Aliexpress Discounts Finder

Aliexpress Discounts Finder

This extension finds coupons and discounts automatically

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Aliexpress Discounts Finder",
  "description": "This extension finds coupons and discounts automatically",
  "version": "1.8.7",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "default_locale": "en",
  "browser_action": {
    "default_icon": {
      "32": "images/[email protected]"
    },
    "default_title": "Aliexpress Coupons Finder"
  },
  "icons": {
    "128": "images/128x128.png"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.aliexpress.com/*",
        "http://*.aliexpress.com/*"
      ],
      "css": [
        "styles/contentscript.css"
      ],
      "js": [
        "scripts/contentscript.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    },
    {
      "matches": [
        "https://*.aliexpress.com/*",
        "http://*.aliexpress.com/*"
      ],
      "css": [
        "styles/contentscript.css"
      ],
      "js": [
        "scripts/contentscript_curated_pages.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "images/*"
  ],
  "permissions": [
    "tabs",
    "https://*.aliexpress.com/*",
    "http://*.aliexpress.com/*",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}