AliExpress Image Search - AliCompare

AliExpress Image Search - AliCompare

AliCompare

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_extName__",
  "description": "__MSG_extDescr__",
  "version": "4.2.0",
  "default_locale": "en",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.aliexpress.com/item/*"
      ],
      "js": [
        "contentAliexpress.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.aliexpress.com/p/trade/confirm.html*"
      ],
      "js": [
        "contentCheckout.js"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "declarativeNetRequest",
    "cookies",
    "scripting",
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}