TwitchTv Chat Overlay

Displays chat messages over the video stream allowing viewers to hide the chat display (and extend the video player area!)

¿Qué es TwitchTv Chat Overlay?

TwitchTv Chat Overlay es una extensión de Chrome desarrollada por pardo.medina.developer, y su función principal es "Displays chat messages over the video stream allowing viewers to hide the chat display (and extend the video player area!)".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión TwitchTv Chat Overlay

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

                        A 2d canvas overlay that displays chat text scrolling horizontally on top of the steam video player.

With TwitchTvChat extension viewers can now hide the chat panel to expand the video player size and keep reading the conversation happening in the the chat while watching the stream at the same time!

This version supports Theater Mode (which combines very well with Browser's fullscreen mode).

If you like it and would like to contribute, fork the repo at https://github.com/pardoman/TwitchTvChat                    

Información Básica de la Extensión

Nombre TwitchTv Chat Overlay TwitchTv Chat Overlay
ID bojgahgecolnjofbnpeijdbdcpjglmhc
URL Oficial https://chromewebstore.google.com/detail/twitchtv-chat-overlay/bojgahgecolnjofbnpeijdbdcpjglmhc
Descripción Displays chat messages over the video stream allowing viewers to hide the chat display (and extend the video player area!)
Tamaño del Archivo 15.08 KB
Cantidad de Instalaciones 218
Versión Actual 1.1.0
Última Actualización 2015-08-04
Fecha de Publicación 2015-08-03
Calificación 3.67/5 Total de 3 Calificaciones
Desarrollador pardo.medina.developer
Tipo de Pago free
Sitio Web de la Extensión https://github.com/pardoman/TwitchTvChat
Idiomas Soportados en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.1.0",
    "name": "__MSG_extName__",
    "short_name": "__MSG_extShortName__",
    "description": "__MSG_extDesc__",
    "default_locale": "en",
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "page_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "__MSG_iconTooltip__"
    },
    "author": "Federico Medina (pardoman)",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/helpers.js",
                "js\/content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "declarativeContent"
    ]
}