AliExpress Paypal

AliExpress Paypal

Show if the AliExpress seller accept Paypal

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_title__",
  "description": "__MSG_subtitle__",
  "version": "2.1",
  "manifest_version": 3,
  "default_locale": "en",
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "__MSG_title__",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "img/logo_16.png",
    "32": "img/logo_32.png",
    "48": "img/logo_48.png",
    "128": "img/logo_128.png"
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://shoppingcart.aliexpress.com/order/confirm_order*",
        "*://shoppingcart.aliexpress.com/orders.*",
        "*://*.aliexpress.com/p/trade/confirm*"
      ],
      "js": [
        "js/content-script.js"
      ]
    },
    {
      "matches": [
        "*://*.aliexpress.com/item/*"
      ],
      "js": [
        "js/product-page.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/paypal-accepted.png"
      ],
      "matches": [
        "*://*.aliexpress.com/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}