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).

Wat is Hide Twitch Chat Users?

Hide Twitch Chat Users is een Chrome-extensie ontwikkeld door mikeyaworski, en de belangrijkste functie is "Enter the names of usernames you would like to hide messages from in Twitch.tv chats (split by whitespace and/or commas).".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Hide Twitch Chat Users

Download Hide Twitch Chat Users-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Hide Twitch Chat Users Hide Twitch Chat Users
ID fcijjhjjaiacddgmgcmlhoabkhmmfiib
Officiële URL https://chromewebstore.google.com/detail/hide-twitch-chat-users/fcijjhjjaiacddgmgcmlhoabkhmmfiib
Beschrijving Enter the names of usernames you would like to hide messages from in Twitch.tv chats (split by whitespace and/or commas).
Bestandsgrootte 38.64 KB
Aantal Installaties 326
Huidige Versie 2.1.0
Laatst Bijgewerkt 2023-04-29
Publicatiedatum 2016-08-14
Beoordeling 3.78/5 Totaal 9 Beoordelingen
Ontwikkelaar mikeyaworski
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/mikeyaworski/Hide-Twitch-Chat-Users
Help Pagina-URL https://github.com/mikeyaworski/Hide-Twitch-Chat-Users/issues
Ondersteunde Talen 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"
    ]
}