Hide YouTube™ Fullscreen Controls

Hide YouTube™ Fullscreen Controls

Hides the YouTube™ fullscreen controls when moving the mouse to any border.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "homepage_url": "https://github.com/nralbrecht/youtube-hide-controls",
  "default_locale": "en",
  "applications": {
    "gecko": {
      "id": "@hideyoutubecontrolls",
      "strict_min_version": "64.0"
    }
  },
  "icons": {
    "48": "icon.svg",
    "96": "icon.svg"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "player.js"
  ],
  "options_ui": {
    "page": "options/options.html"
  },
  "permissions": [
    "storage",
    "*://www.youtube.com/*"
  ],
  "version": "3.1.4"
}