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
{
  "manifest_version": 2,
  "name": "低价雷达",
  "description": "购物比价神器,寻找全网最低价,追踪历史价格,折扣,纯净无广告,支持淘宝、天猫、京东、苏宁比价",
  "version": "1.7.19",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "page_action": {
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.taobao.com/*",
        "*://*.tmall.com/*",
        "*://*.jd.com/*",
        "*://*.suning.com/*"
      ],
      "js": [
        "./js/content_script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "./js/background.js"
    ]
  },
  "permissions": [
    "storage",
    "*://*.taobao.com/*",
    "*://*.tmall.com/*",
    "*://*.jd.com/*",
    "*://*.suning.com/*",
    "*://*.manmanbuy.com/*"
  ]
}