Live Chat Overlay

Overlay live chat on top of the livestream video on YouTube.

¿Qué es Live Chat Overlay?

Live Chat Overlay es una extensión de Chrome desarrollada por Hin Wong, y su función principal es "Overlay live chat on top of the livestream video on YouTube.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Live Chat Overlay

Descarga archivos de extensión Live Chat Overlay en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        By overlaying the live chat on top of the Youtube livestream, you can enlarge the video stream while still keeping track of the audience's reactions.

Changelog
---
v2.14.0

- Enhanced Customization
  - You now have the ability to adjust the font size. Choose to have the font size change along with the player height, or keep it constant.
  - Configure the maximum number of message lines to be displayed over the player. (Default: 15)
- Significant Performance Enhancements
  - A major rewrite has been carried out on this extension, leading to improved startup time and runtime, making everything more responsive and snappy.                    

Información Básica de la Extensión

Nombre Live Chat Overlay Live Chat Overlay
ID ahaklfidpffmhjhlkgakjgbkppdoaemo
URL Oficial https://chromewebstore.google.com/detail/live-chat-overlay/ahaklfidpffmhjhlkgakjgbkppdoaemo
Descripción Overlay live chat on top of the livestream video on YouTube.
Tamaño del Archivo 98.39 KB
Cantidad de Instalaciones 1,059
Versión Actual 2.15.5
Última Actualización 2023-10-15
Fecha de Publicación 2020-06-19
Calificación 4.60/5 Total de 5 Calificaciones
Desarrollador Hin Wong
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/thwonghin/live-chat-overlay
URL de la Página de Ayuda https://github.com/thwonghin/live-chat-overlay/issues
Idiomas Soportados en,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "version": "2.15.5",
    "description": "__MSG_extensionDescription__",
    "homepage_url": "https:\/\/github.com\/thwonghin\/live-chat-overlay",
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "icons": {
        "128": "icon.png"
    },
    "default_locale": "en",
    "permissions": [
        "storage"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "exclude_globs": [
                "https:\/\/www.youtube.com\/live_chat*"
            ],
            "all_frames": true,
            "js": [
                "src\/content-script.js"
            ],
            "css": [
                "style.css"
            ]
        },
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/www.youtube.com\/live_chat*"
            ],
            "all_frames": true,
            "js": [
                "src\/live-chat-content-script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "resources": [
                "src\/live-chat-fetch-interceptor.js"
            ]
        }
    ]
}