Focused Youtube

Removes related videos, comments, and more so that you can browse YouTube distraction free.
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": "Focused Youtube",
  "version": "1.0",
  "manifest_version": 2,
  "description": "Removes related videos, comments, and more so that you can browse YouTube distraction free.",
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*",
        "http://www.youtube.com/*"
      ],
      "css": [
        "mycss.css"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Focused Youtube",
    "default_icon": "icon.png"
  }
}