AliExpress Parcels - My Orders

AliExpress Parcels - My Orders

View and search for AliExpress orders. Quick links will help you instantly switch to your favorite pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_chrome_extension_name__",
  "description": "__MSG_chrome_extension_description__",
  "version": "2.0.0",
  "icons": {
    "16": "phone.png",
    "32": "phone.png",
    "48": "phone.png",
    "128": "phone.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://aliexpress.ru/*"
      ],
      "css": [
        "bundle.css"
      ],
      "js": [
        "background.js"
      ]
    }
  ],
  "permissions": [
    "scripting",
    "storage"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "back.js",
    "type": "module"
  },
  "externally_connectable": {
    "matches": [
      "*://*.aliexpress.com/*",
      "*://*.aliexpress.ru/*",
      "*://aliexpress.ru/*",
      "*://aliexpress.com/*"
    ]
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' ; object-src 'self'"
  }
}