Twitch Chat Filter

Filter out useless messages from Twitch chats.

O que é Twitch Chat Filter?

Twitch Chat Filter é uma extensão do Chrome desenvolvida por EvanDotPro, e sua principal característica é "Filter out useless messages from Twitch chats.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Twitch Chat Filter

Baixe arquivos de extensão Twitch Chat Filter 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

                        Currently there are no settings, but this add-on will hide Twitch chat messages:

- Single word messages (@mentions, repeated words, single letters, and numbers do not count as words).
- Emote only messages.
- Sub and resub notifications.

It also hides the obnoxious leaderboard at the top of the chat.

There are a few rules specific to the type of messages common in Kitboga's channel, but they shouldn't affect the chat filter working on other channels.

At some point, if there is any interest, I will make this configurable.

Source: https://github.com/EvanDotPro/twitch-chat-filter                    

Informações Básicas da Extensão

Nome Twitch Chat Filter Twitch Chat Filter
ID edldhcedhjpciodaefichchenblabceh
URL Oficial https://chromewebstore.google.com/detail/twitch-chat-filter/edldhcedhjpciodaefichchenblabceh
Descrição Filter out useless messages from Twitch chats.
Tamanho do Arquivo 92.3 KB
Contagem de Instalações 206
Versão Atual 0.1.2
Última Atualização 2021-07-18
Data de Publicação 2021-07-13
Classificação 4.50/5 Total de 2 Avaliações
Desenvolvedor EvanDotPro
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/EvanDotPro/twitch-chat-filter
URL da Página de Ajuda https://github.com/EvanDotPro/twitch-chat-filter/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitch Chat Filter",
    "version": "0.1.2",
    "description": "Filter out useless messages from Twitch chats.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "thirdParty\/jquery-3.6.0.js",
                "thirdParty\/arrive-2.4.1.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2
}