YouTube Livestreams Theater Mode

YouTube Livestreams Theater Mode

Improves the viewing experience of YouTube livestreams with an enhanced theater mode.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "YouTube Livestreams Theater Mode",
  "version": "4.1.1",
  "description": "Improves the viewing experience of YouTube livestreams with an enhanced theater mode.",
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "run_at": "document_idle",
      "css": [
        "YouTube/Style.css"
      ],
      "js": [
        "YouTube/Overlay.js",
        "YouTube/InfoIcon.js",
        "YouTube/Settings.js",
        "YouTube/ChatIframe.js",
        "YouTube/Video.js",
        "YouTube/TheaterMode.js",
        "YouTube/YouTube.js",
        "YouTube/Init.js"
      ]
    },
    {
      "matches": [
        "https://*.youtube.com/live_chat*",
        "https://*.youtube.com/live_chat_replay*"
      ],
      "run_at": "document_idle",
      "css": [
        "Chat/TheaterMode.css",
        "Chat/ChatOverVideo.css",
        "Chat/UsernameColors.css",
        "Chat/HideProfilePicture.css",
        "Chat/HideLiveReactions.css",
        "Chat/SuperchatCurrencyConverter.css"
      ],
      "js": [
        "Chat/Chat.js",
        "Chat/ChatSettings.js",
        "Chat/SuperchatCurrencyConverter.js",
        "Chat/Init.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "Background/Background.js"
  },
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "action": {
    "default_popup": "Popup/Popup.html"
  },
  "options_ui": {
    "page": "Options/Options.html",
    "open_in_tab": true,
    "browser_style": true
  },
  "permissions": [
    "storage"
  ],
  "optional_host_permissions": [
    "https://*.napalighost.com/*"
  ]
}