YouTube Full Windowed

YouTube Full Windowed

This extension adds the ability to toggle a full windowed mode in YouTube website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "YouTube Full Windowed",
  "short_name": "YFW",
  "description": "This extension adds the ability to toggle a full windowed mode in YouTube website",
  "version": "1.1.1",
  "icons": {
    "16": "icons/16.png",
    "64": "icons/64.png",
    "128": "icons/128.png"
  },
  "author": "Dennis Rosero",
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "*://*.youtube.com/*"
      ],
      "css": [
        "assets/embed.css"
      ],
      "js": [
        "assets/embed.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{c10b86a1-fefb-4929-a2b7-bdb2c8018da5}"
    }
  }
}