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
Eメール [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"
            ]
        }
    ]
}