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
{
  "name": "页面资源引用统计工具",
  "version": "1.2",
  "manifest_version": 2,
  "description": "由于一些原因,本插件v2版本下载地址有更新,请访问后面地址获取 https://chrome.google.com/webstore/detail/igdijndkhmgefapknfgapbanahmlhfha ",
  "icons": {
    "16": "/images/icon16.png",
    "48": "/images/icon48.png",
    "128": "/images/icon128.png"
  },
  "browser_action": {
    "default_icon": "/images/icon128.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.taobao.com/*",
        "http://*.tmall.com/*"
      ],
      "js": [
        "/js/jquery.js",
        "/js/content.js"
      ],
      "css": [
        "css/content.css"
      ]
    }
  ],
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "http://*.taobao.com/*",
    "http://*.tmall.com/*"
  ],
  "update_url": "http://clients2.google.com/service/update2/crx"
}