Twitch Chat Overlay

Overlay the Twitch chat when in fullscreen mode.

¿Qué es Twitch Chat Overlay?

Twitch Chat Overlay es una extensión de Chrome desarrollada por trmcnvn, y su función principal es "Overlay the Twitch chat when in fullscreen mode.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Twitch Chat Overlay

Descarga archivos de extensión Twitch 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

                        Twitch Chat Overlay will allow you to view and interact with the chat while watching a stream in fullscreen.

You can move, resize, and toggle the chat window while in full-screen and these settings are remembered the next time you watch!                    

Información Básica de la Extensión

Nombre Twitch Chat Overlay Twitch Chat Overlay
ID lcljofkmbcdnjekeamikmefcjohmhgng
URL Oficial https://chromewebstore.google.com/detail/twitch-chat-overlay/lcljofkmbcdnjekeamikmefcjohmhgng
Descripción Overlay the Twitch chat when in fullscreen mode.
Tamaño del Archivo 25.92 KB
Cantidad de Instalaciones 3,615
Versión Actual 1.10
Última Actualización 2020-01-21
Fecha de Publicación 2020-01-14
Calificación 3.70/5 Total de 10 Calificaciones
Desarrollador trmcnvn
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/trmcnvn/twitch-chat-overlay
URL de la Página de Ayuda https://github.com/trmcnvn/twitch-chat-overlay/issues
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitch Chat Overlay",
    "description": "Overlay the Twitch chat when in fullscreen mode.",
    "version": "1.10",
    "homepage_url": "https:\/\/github.com\/trmcnvn\/twitch-chat-overlay",
    "icons": {
        "16": "resources\/icon-16.jpg",
        "48": "resources\/icon-48.jpg",
        "96": "resources\/icon-96.jpg",
        "128": "resources\/icon-128.jpg"
    },
    "web_accessible_resources": [
        "overlay.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "main.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_idle"
        }
    ]
}