Chatterino Native Host

Replaces the chat on Twitch.tv with Chatterino.

什么是Chatterino Native Host?

Chatterino Native Host是由fourtf开发的Chrome扩展程序,该扩展的主要功能是“Replaces the chat on Twitch.tv with Chatterino.”。

扩展截图

screenshot

下载Chatterino Native Host扩展crx文件

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

扩展使用说明

                        Overlay the Twitch.tv live chat with Chatterino, bringing the native performance and features of Chatterino to the website. Have the same experience chatting no matter if you are watching or are in offline chat.

We use events and data provided by the browser to overlay a native Chatterino window over the browser. The information includes the channel in which the user is in, as well as the size of the chat. Changing the tab or closing a window causes the Chatterino application to hide/show the window. Chatterino tracks the position and z-level of the Browser window and moves itself accordingly.

NOTE:
- This extension only works on Windows.
- We need to overlay a native window over the browser window which is tricky by design and may not work for you setup.                    

扩展基本信息

名称 Chatterino Native Host Chatterino Native Host
ID glknmaideaikkmemifbfkhnomoknepka
官方URL https://chromewebstore.google.com/detail/chatterino-native-host/glknmaideaikkmemifbfkhnomoknepka
简介 Replaces the chat on Twitch.tv with Chatterino.
文件大小 28.37 KB
安装次数 10,000
当前版本 1.5
更新时间 2023-03-31
上架时间 2019-09-26
评分 3.16/5 共62次评分
开发者 fourtf
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/fourtf/chatterino2
帮助页面URL https://discord.gg/3vmJRwy
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chatterino Native Host",
    "version": "1.5",
    "description": "Replaces the chat on Twitch.tv with Chatterino.",
    "permissions": [
        "tabs",
        "nativeMessaging",
        "storage"
    ],
    "icons": {
        "256": "icon.png"
    },
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "50.0"
        }
    },
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ]
}