hyde — hide the YouTube video player controls

hyde — hide the YouTube video player controls

Press Ctrl+M to hide or show the YouTube video player controls.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "hyde — hide the YouTube video player controls",
  "version": "1.1",
  "description": "Press Ctrl+M to hide or show the YouTube video player controls.",
  "icons": {
    "16": "img/icon16.png",
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "background": {
    "scripts": [
      "src/background.js"
    ],
    "persistent": false
  },
  "commands": {
    "hide": {
      "suggested_key": {
        "default": "Ctrl+M"
      },
      "description": "hide/show controls"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.youtube.com/watch?*",
        "https://*.youtube.com/watch?*"
      ],
      "js": [
        "src/hide.js",
        "src/show.js"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ]
}