AliExpress Paypal Plus

AliExpress Paypal Plus

Show if the AliExpress Seller Accept Paypal

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AliExpress Paypal Plus",
  "version": "1.0.0",
  "description": "Show if the AliExpress Seller Accept Paypal",
  "permissions": [
    "*://*.aliexpress.com/*"
  ],
  "background": {
    "scripts": [
      "js/background.js",
      "js/activate.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://shoppingcart.aliexpress.com/order/confirm_order*",
        "*://shoppingcart.aliexpress.com/orders.*"
      ],
      "js": [
        "js/affiliate.js"
      ]
    },
    {
      "matches": [
        "*://*.aliexpress.com/item/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "js/popup/popup.html",
    "default_title": "AliExpress Paypal Plus"
  },
  "icons": {
    "16": "img/logo_16.png",
    "32": "img/logo_32.png",
    "48": "img/logo_48.png",
    "128": "img/logo_128.png"
  },
  "web_accessible_resources": [
    "img/paypal-accepted.png",
    "fonts/DroidSansFallback.ttf",
    "fonts/DroidSans-Bold.ttf"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://ssl.google-analytics.com https://www.google-analytics.com https://www.googletagmanager.com; object-src 'self'",
  "default_locale": "en",
  "manifest_version": 2
}