TwitchTv Chat Overlay

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

Cos'è TwitchTv Chat Overlay?

TwitchTv Chat Overlay è un'estensione di Chrome sviluppata da pardo.medina.developer, e la sua funzione principale è "Displays chat messages over the video stream allowing viewers to hide the chat display (and extend the video player area!)".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione TwitchTv Chat Overlay

Scarica i file di estensione TwitchTv Chat Overlay in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome TwitchTv Chat Overlay TwitchTv Chat Overlay
ID bojgahgecolnjofbnpeijdbdcpjglmhc
URL Ufficiale https://chromewebstore.google.com/detail/twitchtv-chat-overlay/bojgahgecolnjofbnpeijdbdcpjglmhc
Descrizione Displays chat messages over the video stream allowing viewers to hide the chat display (and extend the video player area!)
Dimensione del File 15.08 KB
Conteggio Installazioni 218
Versione Corrente 1.1.0
Ultimo Aggiornamento 2015-08-04
Data di Pubblicazione 2015-08-03
Valutazione 3.67/5 Totale 3 Valutazioni
Sviluppatore pardo.medina.developer
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/pardoman/TwitchTvChat
Lingue Supportate 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"
    ]
}