Invoices for AliExpress

Invoices for AliExpress

Bulk download of AliExpress invoices

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "short_name": "Invoices for AliExpress",
  "version": "3.0.2",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "public/icons/icon-16.png",
    "48": "public/icons/icon-48.png",
    "96": "public/icons/icon-96.png",
    "128": "public/icons/icon-128.png"
  },
  "content_security_policy": {
    "extensions_pages": "script-src 'self'; object-src 'self'"
  },
  "permissions": [
    "declarativeNetRequest",
    "webRequest",
    "downloads",
    "storage",
    "activeTab"
  ],
  "host_permissions": [
    "*://*.aliexpress.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {},
  "content_scripts": [
    {
      "matches": [
        "*://*.aliexpress.com/p/order*",
        "*://*.aliexpress.com/*"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://account.mxnpro.ovh/invoices-for-aliexpress/*"
      ],
      "js": [
        "account.js"
      ],
      "all_frames": true
    }
  ]
}