AliCoupons - Automatic Coupon Finder

Automatically find coupon codes on AliExpress
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",
  "background": {
    "service_worker": "scripts/background.js"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "css": [
        "styles/contentscript.css"
      ],
      "js": [
        "scripts/contentscript.js"
      ],
      "matches": [
        "https://*.aliexpress.com/*",
        "http://*.aliexpress.com/*"
      ],
      "run_at": "document_end"
    },
    {
      "all_frames": true,
      "css": [
        "styles/contentscript.css"
      ],
      "js": [
        "scripts/contentscript_on_pages.js"
      ],
      "matches": [
        "https://*.aliexpress.com/*",
        "http://*.aliexpress.com/*"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "description": "Automatically find coupon codes on AliExpress",
  "icons": {
    "16": "icons/16x16.png",
    "32": "icons/32x32.png",
    "48": "icons/48x48.png",
    "64": "icons/64x64.png",
    "128": "icons/128x128.png",
    "256": "icons/256x256.png",
    "300": "icons/300x300.png",
    "512": "icons/512x512.png"
  },
  "manifest_version": 3,
  "name": "AliCoupons - Automatic Coupon Finder",
  "permissions": [
    "storage",
    "tabs",
    "notifications"
  ],
  "version": "0.1.3"
}