Twitch Chat Overlay

Overlay the Twitch chat when in fullscreen mode.

什么是Twitch Chat Overlay?

Twitch Chat Overlay是由trmcnvn开发的Chrome扩展程序,该扩展的主要功能是“Overlay the Twitch chat when in fullscreen mode.”。

扩展截图

screenshot
screenshot

下载Twitch Chat Overlay扩展crx文件

下载Twitch Chat Overlay扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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!                    

扩展基本信息

名称 Twitch Chat Overlay Twitch Chat Overlay
ID lcljofkmbcdnjekeamikmefcjohmhgng
官方URL https://chromewebstore.google.com/detail/twitch-chat-overlay/lcljofkmbcdnjekeamikmefcjohmhgng
简介 Overlay the Twitch chat when in fullscreen mode.
文件大小 25.92 KB
安装次数 3,615
当前版本 1.10
更新时间 2020-01-21
上架时间 2020-01-14
评分 3.70/5 共10次评分
开发者 trmcnvn
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/trmcnvn/twitch-chat-overlay
帮助页面URL https://github.com/trmcnvn/twitch-chat-overlay/issues
支持的语言 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"
        }
    ]
}