Hide Twitch Chat Users

Enter the names of usernames you would like to hide messages from in Twitch.tv chats (split by whitespace and/or commas).

O que é Hide Twitch Chat Users?

Hide Twitch Chat Users é uma extensão do Chrome desenvolvida por mikeyaworski, e sua principal característica é "Enter the names of usernames you would like to hide messages from in Twitch.tv chats (split by whitespace and/or commas).".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Hide Twitch Chat Users

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

                        Click on the icon in your chrome menu to edit settings. Enter the names of usernames you would like to hide messages from in Twitch.tv chats (split by whitespace and/or commas).

Check the "hide" checkbox in order for this to take effect. On all Twitch pages, a script will run every 100 milliseconds to hide all messages in chats from the usernames you wrote down.

If you make any changes to the usernames or the checkbox, refresh the webpage for them to take effect.                    

Informações Básicas da Extensão

Nome Hide Twitch Chat Users Hide Twitch Chat Users
ID fcijjhjjaiacddgmgcmlhoabkhmmfiib
URL Oficial https://chromewebstore.google.com/detail/hide-twitch-chat-users/fcijjhjjaiacddgmgcmlhoabkhmmfiib
Descrição Enter the names of usernames you would like to hide messages from in Twitch.tv chats (split by whitespace and/or commas).
Tamanho do Arquivo 38.64 KB
Contagem de Instalações 326
Versão Atual 2.1.0
Última Atualização 2023-04-29
Data de Publicação 2016-08-14
Classificação 3.78/5 Total de 9 Avaliações
Desenvolvedor mikeyaworski
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/mikeyaworski/Hide-Twitch-Chat-Users
URL da Página de Ajuda https://github.com/mikeyaworski/Hide-Twitch-Chat-Users/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hide Twitch Chat Users",
    "description": "Enter the names of usernames you would like to hide messages from in Twitch.tv chats (split by whitespace and\/or commas).",
    "version": "2.1.0",
    "manifest_version": 3,
    "browser_specific_settings": {
        "gecko": {
            "id": "{6b982795-4e75-4bc0-a1d8-616f4eb39970}"
        }
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}