TwitchTv Chat Overlay

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

Qu'est-ce que TwitchTv Chat Overlay ?

TwitchTv Chat Overlay est une extension Chrome développée par pardo.medina.developer, et sa fonction principale est "Displays chat messages over the video stream allowing viewers to hide the chat display (and extend the video player area!)".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension TwitchTv Chat Overlay

Téléchargez les fichiers d'extension TwitchTv Chat Overlay au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom TwitchTv Chat Overlay TwitchTv Chat Overlay
ID bojgahgecolnjofbnpeijdbdcpjglmhc
URL Officiel https://chromewebstore.google.com/detail/twitchtv-chat-overlay/bojgahgecolnjofbnpeijdbdcpjglmhc
Description Displays chat messages over the video stream allowing viewers to hide the chat display (and extend the video player area!)
Taille du Fichier 15.08 KB
Nombre d'Installations 218
Version Actuelle 1.1.0
Dernière Mise à Jour 2015-08-04
Date de Publication 2015-08-03
Évaluation 3.67/5 Total 3 Évaluations
Développeur pardo.medina.developer
Type de Paiement free
Site Web de l'Extension https://github.com/pardoman/TwitchTvChat
Langues Prises en Charge 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"
    ]
}