Hide Youtube Chrome

Allows you to show and hide the Youtube playback controls etc.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Hide Youtube Chrome",
  "version": "1.0",
  "description": "Allows you to show and hide the UI on Youtube videos.",
  "icons": {
    "48": "icons/noui.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/watch*"
      ],
      "js": [
        "noui.js"
      ]
    }
  ]
}