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).
Cos'è Hide Twitch Chat Users?
Hide Twitch Chat Users è un'estensione di Chrome sviluppata da mikeyaworski, e la sua funzione principale è "Enter the names of usernames you would like to hide messages from in Twitch.tv chats (split by whitespace and/or commas).".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Hide Twitch Chat Users
Scarica i file di estensione Hide Twitch Chat Users in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | fcijjhjjaiacddgmgcmlhoabkhmmfiib |
URL Ufficiale | https://chromewebstore.google.com/detail/hide-twitch-chat-users/fcijjhjjaiacddgmgcmlhoabkhmmfiib |
Descrizione | Enter the names of usernames you would like to hide messages from in Twitch.tv chats (split by whitespace and/or commas). |
Dimensione del File | 38.64 KB |
Conteggio Installazioni | 326 |
Versione Corrente | 2.1.0 |
Ultimo Aggiornamento | 2023-04-29 |
Data di Pubblicazione | 2016-08-14 |
Valutazione | 3.78/5 Totale 9 Valutazioni |
Sviluppatore | mikeyaworski |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/mikeyaworski/Hide-Twitch-Chat-Users |
URL della Pagina di Aiuto | https://github.com/mikeyaworski/Hide-Twitch-Chat-Users/issues |
Lingue Supportate | 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" ] } |