YouTube Full Windowed

YouTube Full Windowed

This extension enables the ability to toggle a full windowed mode for any YouTube video (excluding embedded ones).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "YouTube Full Windowed",
  "short_name": "YTFullWindow",
  "description": "This extension enables the ability to toggle a full windowed mode for any YouTube video (excluding embedded ones).",
  "version": "1.1.0",
  "browser_action": {
    "default_icon": "icons/state-0.png"
  },
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "author": "Christopher Eklund",
  "homepage_url": "https://github.com/eklundchristopher/YouTube-Full-Windowed.chrome-extension",
  "permissions": [
    "activeTab",
    "https://www.youtube.com/watch*"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "assets/extension.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://www.youtube.com/*"
      ],
      "css": [
        "assets/embed.css"
      ],
      "js": [
        "assets/embed.js"
      ]
    }
  ]
}