Live Chat Overlay

Live Chat Overlay

Restyle the YouTube and Castr.io popout chat so you can overlay it for livestreams

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Live Chat Overlay",
  "description": "Restyle the YouTube and Castr.io popout chat so you can overlay it for livestreams",
  "manifest_version": 2,
  "version": "0.1.4",
  "homepage_url": "https://github.com/br8kpoint/Live-Chat-Overlay",
  "icons": {
    "128": "icons/icon-128.png"
  },
  "permissions": [
    "https://youtube.com/*",
    "https://www.youtube.com/*",
    "https://studio.youtube.com/*",
    "https://chat.castr.io/room*",
    "storage"
  ],
  "content_scripts": [
    {
      "css": [
        "youtube.css",
        "lib/featherlight/featherlight.min.css"
      ],
      "js": [
        "jquery.js",
        "youtube.js",
        "lib/featherlight/featherlight.min.js"
      ],
      "matches": [
        "https://youtube.com/live_chat*",
        "https://www.youtube.com/live_chat*",
        "https://studio.youtube.com/live_chat*",
        "https://chat.castr.io/room*"
      ]
    }
  ],
  "options_ui": {
    "page": "settings/options.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    "settings/*",
    "lib/*"
  ]
}