Examine source code of YouTube Moderator Watcher

Inspect and view changes in YouTube Moderator Watcher 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": "YouTube Moderator Watcher",
  "version": "0.3.0",
  "manifest_version": 2,
  "description": "__MSG_extDescription__",
  "icons": {
    "16": "images/size16.png",
    "48": "images/size48.png",
    "128": "images/size128.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "default_locale": "en",
  "content_scripts": [
    {
      "run_at": "document_idle",
      "all_frames": true,
      "matches": [
        "https://*.youtube.com/live_chat**"
      ],
      "js": [
        "storage.js",
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "image/*"
  ],
  "browser_action": {
    "default_popup": "options.html"
  }
}