YouTube Inline Fullscreen

YouTube Inline Fullscreen

Make the most out of your screen space with a single click!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube Inline Fullscreen",
  "version": "1.2.7",
  "description": "Make the most out of your screen space with a single click!",
  "icons": {
    "16": "icons/fullscreen-16.png",
    "48": "icons/fullscreen-48.png",
    "128": "icons/fullscreen-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "scripting"
  ],
  "host_permissions": [
    "*://youtube.com/*",
    "*://www.youtube.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "css": [
        "ytif_style.css"
      ],
      "js": [
        "ytif_content_script.js"
      ]
    }
  ],
  "action": {
    "default_name": "Fullscreen!",
    "default_icon": "icons/fullscreen-48.png"
  },
  "manifest_version": 3
}