速卖通称重和运费校验

速卖通称重和运费校验

获取速卖通包裹计费重量和实收运费,并根据实际重量判断速卖通是否多称、多收运费,自动计算可赔付金额。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "速卖通称重和运费校验",
  "homepage_url": "https://tit.aezhushou.com/web/aeShipFeeReview/main.html?ifor=shipFeeReview",
  "version": "1.3",
  "manifest_version": 3,
  "description": "获取速卖通包裹计费重量和实收运费,并根据实际重量判断速卖通是否多称、多收运费,自动计算可赔付金额。",
  "icons": {
    "16": "image/icon.png",
    "48": "image/icon.png",
    "128": "image/icon.png"
  },
  "background": {
    "service_worker": "html/background.js"
  },
  "content_scripts": [
    {
      "js": [
        "html/jquery.js",
        "html/underscore.js",
        "html/sweetalert.min.js",
        "html/g.js",
        "html/checkShipFee.js"
      ],
      "css": [
        "html/sweetalert.css",
        "html/mycss.css"
      ],
      "matches": [
        "*://sg-cgmp.aliexpress.com/aex-seller-center/logistic/logisticOrderManage*",
        "*://sg-cgmp.aliexpress.com/ae-global-seller-center/logistics_order_list*"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": {
    "script-src": "*://tit.aezhushou.com"
  },
  "permissions": [
    "background",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "*://sg-cainiao.aliexpress.com/*",
    "*://sg-cgmp.aliexpress.com/*",
    "*://gsp.aliexpress.com/*",
    "*://csp.aliexpress.com/*",
    "*://seller-acs.aliexpress.com/*",
    "*://tit.aezhushou.com/*"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "rule1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  }
}