Examine source code of 1688淘宝同款比价助手

Inspect and view changes in 1688淘宝同款比价助手 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
{
  "name": "1688淘宝同款比价助手",
  "version": "1.4",
  "manifest_version": 2,
  "description": "自动查找1688,淘宝,京东同款相似商品,为您找到更低价格相似商品,让您的采购更节省开支。",
  "icons": {
    "16": "icon/icon16.png",
    "48": "icon/icon48.png",
    "128": "icon/icon128.png"
  },
  "browser_action": {
    "default_icon": "icon/icon48.png",
    "default_popup": "html/popup.html"
  },
  "background": {
    "page": "html/background.htm"
  },
  "content_scripts": [
    {
      "matches": [
        "*://item.taobao.com/*",
        "*://detail.tmall.com/*",
        "*://chaoshi.detail.tmall.com/*",
        "*://detail.yao.95095.com/*",
        "*://detail.tmall.hk/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/couponshow.js"
      ],
      "run_at": "document_start",
      "css": [
        "css/counponDetail.css"
      ]
    },
    {
      "matches": [
        "*://cj.zuso.top/cj/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/config.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://uland.taobao.com/coupon/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/juanDetail.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://ai.taobao.com/search/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/aisearchDetail.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://item.jd.com/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/jdSimilarShow.js"
      ],
      "run_at": "document_start",
      "css": [
        "css/jdSimilarItemDetail.css"
      ]
    },
    {
      "matches": [
        "*://www.jd.com/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/jdgoitem.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://detail.1688.com/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/detail1688.js"
      ],
      "run_at": "document_start",
      "css": [
        "css/counponDetail.css"
      ]
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/surface.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "tabs",
    "cookies",
    "*://*/*",
    "storage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}