Chatterino Native Host

Replaces the chat on Twitch.tv with Chatterino.

O que é Chatterino Native Host?

Chatterino Native Host é uma extensão do Chrome desenvolvida por fourtf, e sua principal característica é "Replaces the chat on Twitch.tv with Chatterino.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Chatterino Native Host

Baixe arquivos de extensão Chatterino Native Host no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Chatterino Native Host Chatterino Native Host
ID glknmaideaikkmemifbfkhnomoknepka
URL Oficial https://chromewebstore.google.com/detail/chatterino-native-host/glknmaideaikkmemifbfkhnomoknepka
Descrição Replaces the chat on Twitch.tv with Chatterino.
Tamanho do Arquivo 28.37 KB
Contagem de Instalações 10,000
Versão Atual 1.5
Última Atualização 2023-03-31
Data de Publicação 2019-09-26
Classificação 3.16/5 Total de 62 Avaliações
Desenvolvedor fourtf
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/fourtf/chatterino2
URL da Página de Ajuda https://discord.gg/3vmJRwy
Idiomas Suportados 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"
            ]
        }
    ]
}