Examine source code of Simple Youtube controller

Inspect and view changes in Simple Youtube controller 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
{
  "description": "Simple Youtube player controller",
  "manifest_version": 2,
  "name": "Youtube controller",
  "version": "1.42",
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "browser_style": true,
    "default_popup": "popup/choose_page.html",
    "default_icon": {
      "512": "icon/logo.png"
    }
  }
}