TwitchTv Chat Overlay

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

什麼是TwitchTv Chat Overlay?

TwitchTv Chat Overlay是由pardo.medina.developer開發的Chrome擴展程式,該擴展的主要功能是“Displays chat messages over the video stream allowing viewers to hide the chat display (and extend the video player area!)”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載TwitchTv Chat Overlay擴展crx文件

下載TwitchTv Chat Overlay擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 TwitchTv Chat Overlay TwitchTv Chat Overlay
ID bojgahgecolnjofbnpeijdbdcpjglmhc
官方網址 https://chromewebstore.google.com/detail/twitchtv-chat-overlay/bojgahgecolnjofbnpeijdbdcpjglmhc
簡介 Displays chat messages over the video stream allowing viewers to hide the chat display (and extend the video player area!)
檔案大小 15.08 KB
安裝次數 218
目前版本 1.1.0
更新時間 2015-08-04
上架時間 2015-08-03
評分 3.67/5 共 3 次評分
開發者 pardo.medina.developer
付費類型 free
擴展官網 https://github.com/pardoman/TwitchTvChat
支援的語言 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"
    ]
}