购物党自动比价工具

购物党自动比价工具

浏览商品页面时,自动查询180天历史价格、比较同款商品的全网最低价、提示促销和隐藏优惠券、一旦降价还能通过微信提醒你,海淘、二手房游戏平台也能比价!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "购物党自动比价工具",
  "version": "5.15.0",
  "manifest_version": 3,
  "minimum_chrome_version": "109",
  "default_locale": "zh_CN",
  "description": "浏览商品页面时,自动查询180天历史价格、比较同款商品的全网最低价、提示促销和隐藏优惠券、一旦降价还能通过微信提醒你,海淘、二手房游戏平台也能比价!",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "cookies",
    "storage",
    "alarms"
  ],
  "host_permissions": [
    "https://*.gwdang.com/",
    "<all_urls>",
    "http://*/*",
    "https://*/*"
  ],
  "optional_permissions": [],
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "action": {
    "default_icon": "images/icon19.png",
    "default_title": "购物党全网自动比价工具",
    "default_popup": "html/popup2.html"
  },
  "options_page": "html/setting.html",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end",
      "all_frames": true,
      "js": [
        "js/main.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/js/*"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    },
    {
      "resources": [
        "/html/*"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    },
    {
      "resources": [
        "/css/*"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    },
    {
      "resources": [
        "/images/*"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "homepage_url": "https://www.gwdang.com"
}