AliExpress速卖通New User原价透视

AliExpress速卖通New User原价透视

打开一个New User商品链接,选中SKU后显示原价

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AliExpress速卖通New User原价透视",
  "short_name": "AliExpressNewUserPriceDisplay",
  "description": "打开一个New User商品链接,选中SKU后显示原价",
  "version": "0.22",
  "author": "梁栩谦",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "action": {
    "default_title": "AliExpress速卖通New User原价透视",
    "default_icon": "img/icon48.png",
    "default_popup": "popup.htm"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.aliexpress.com/item/*",
        "https://*.aliexpress.us/item/*",
        "http://*.aliexpress.com/item/*"
      ],
      "css": [
        "asset/lib/my.css"
      ],
      "js": [
        "asset/lib/jquery.min.js",
        "content.js"
      ],
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/qr.jpg",
        "img/wechat.jpg",
        "img/gzh.jpg",
        "getWindowsVar.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.aliexpress.com/item/*",
      "*://*.aliexpress.us/item/*"
    ]
  },
  "permissions": [
    "webRequest"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "host_permissions": [
    "https://*.aliexpress.com/item/*",
    "https://*.aliexpress.us/item/*",
    "http://*.aliexpress.com/item/*",
    "http://*.aliexpress.ru/item/*",
    "https://*.aliexpress.ru/item/*",
    "https://exad.rangtaobaofei.com/*",
    "https://da.rangtaobaofei.com/*",
    "https://aefb.yiyimeijin.com/*"
  ]
}