Examine source code of Danmu ZhuShou

Inspect and view changes in Danmu ZhuShou 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",
  "name": "Danmu ZhuShou",
  "description": "danmu zhushou",
  "version": "1.2",
  "manifest_version": 2,
  "browser_action": {
    "default_popup": "index.html",
    "default_icon": "excel.png"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+B",
        "mac": "MacCtrl+B"
      },
      "description": "Opens index.html"
    }
  },
  "permissions": [
    "http://*/",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.douyu.com/*"
      ],
      "js": [
        "js/jquery-1.9.1.min.js",
        "js/content.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ]
}