Examine source code of 调价先锋产品采集插件

Inspect and view changes in 调价先锋产品采集插件 source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "调价先锋产品采集插件",
  "version": "1.1.2",
  "description": "一款专业的商品价格采集工具,支持一键采集商品信息到调价先锋平台",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://vip.wortenprice.com/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    }
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "author": "yuanyongvia@gmail.com",
  "homepage_url": "https://wortenprice.com",
  "content_scripts": [
    {
      "matches": [
        "*://www.worten.pt/*",
        "*://*.walmart.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}