Live Chat Overlay

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

What is Live Chat Overlay?

Live Chat Overlay is a Chrome extension developed by mwftech2021, and its main feature is "Restyle the YouTube and Castr.io popout chat so you can overlay it for livestreams".

Extension Screenshots

screenshot

Download Live Chat Overlay Extension CRX File

Download Live Chat Overlay extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension allows you to highlight chat messages from YouTube and the Castr.io unified chat messaging windows so they can be displayed as an overlay on your livestream.

The Castr.io unified app currently works with YouTube, Twitch and Facebook*.


* Due to a permissions issue the names are not displayed properly from Facebook. There are settings to replace Anonymous users with a replacement string.                    

Extension Basic Information

Name Live Chat Overlay Live Chat Overlay
ID jpoihkknbjjfhbancpejlbejefpghmnc
Official URL https://chromewebstore.google.com/detail/live-chat-overlay/jpoihkknbjjfhbancpejlbejefpghmnc
Description Restyle the YouTube and Castr.io popout chat so you can overlay it for livestreams
File Size 411 KB
Installation Count 457
Current Version 0.1.4
Last Updated 2021-03-17
Publish Date 2021-03-16
Developer mwftech2021
Email [email protected]
Payment Type free
Extension Website https://github.com/br8kpoint/live-chat-overlay
Help Page URL https://github.com/br8kpoint/live-chat-overlay/issues
Privacy Policy Page URL https://mwftech.ca/privacy-policy
Supported Languages en
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\/*"
    ]
}