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).
What is Hide Twitch Chat Users?
Hide Twitch Chat Users is a Chrome extension developed by mikeyaworski, and its main feature is "Enter the names of usernames you would like to hide messages from in Twitch.tv chats (split by whitespace and/or commas).".
Extension Screenshots
Download Hide Twitch Chat Users Extension CRX File
Download Hide Twitch Chat Users extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | fcijjhjjaiacddgmgcmlhoabkhmmfiib |
Official URL | https://chromewebstore.google.com/detail/hide-twitch-chat-users/fcijjhjjaiacddgmgcmlhoabkhmmfiib |
Description | Enter the names of usernames you would like to hide messages from in Twitch.tv chats (split by whitespace and/or commas). |
File Size | 38.64 KB |
Installation Count | 326 |
Current Version | 2.1.0 |
Last Updated | 2023-04-29 |
Publish Date | 2016-08-14 |
Rating | 3.78/5 Total 9 Ratings |
Developer | mikeyaworski |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/mikeyaworski/Hide-Twitch-Chat-Users |
Help Page URL | https://github.com/mikeyaworski/Hide-Twitch-Chat-Users/issues |
Supported Languages | 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" ] } |