SmartBuy

SmartBuy

Smart Buy在您电商网站购物中,快速自动查询淘宝、天猫、京东、唯品会等电商平台内部优惠券信息。

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "SmartBuy",
  "description": "Smart Buy在您电商网站购物中,快速自动查询淘宝、天猫、京东、唯品会等电商平台内部优惠券信息。",
  "version": "1.0.2",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_icon": {
      "16": "images/icon/logo_128.png",
      "24": "images/icon/logo_128.png",
      "32": "images/icon/logo_128.png"
    },
    "default_title": "SmartBuy",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "windows"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "*://*.gov.cn/*",
        "*://*.360.com/*",
        "*://*.360.cn/*",
        "*://*.so.com/*"
      ],
      "all_frames": true,
      "js": [
        "js/temp.js",
        "js/contentScript.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "images/icon/logo_16.png",
    "32": "images/icon/logo_32.png",
    "48": "images/icon/logo_48.png",
    "128": "images/icon/logo_128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}