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": 2,
  "name": "考拉数据打点校验",
  "description": "考拉数据打点校验插件",
  "version": "1.0",
  "permissions": [
    "activeTab",
    "webRequest",
    "*://rev.da.netease.com/__dam.gif?*"
  ],
  "icons": {
    "16": "icon/icon_16.png",
    "128": "icon/icon_128.png"
  },
  "browser_action": {
    "default_icon": "icon/icon_16.png",
    "default_title": "考拉数据打点校验"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/dotting.js"
      ]
    }
  ]
}