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).
Τι είναι το Hide Twitch Chat Users;
Το Hide Twitch Chat Users είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον mikeyaworski, και η κύρια λειτουργία του είναι "Enter the names of usernames you would like to hide messages from in Twitch.tv chats (split by whitespace and/or commas).".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Hide Twitch Chat Users
Λήψη αρχείων επέκτασης Hide Twitch Chat Users σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | fcijjhjjaiacddgmgcmlhoabkhmmfiib |
Επίσημο URL | https://chromewebstore.google.com/detail/hide-twitch-chat-users/fcijjhjjaiacddgmgcmlhoabkhmmfiib |
Περιγραφή | Enter the names of usernames you would like to hide messages from in Twitch.tv chats (split by whitespace and/or commas). |
Μέγεθος Αρχείου | 38.64 KB |
Αριθμός Εγκαταστάσεων | 326 |
Τρέχουσα Έκδοση | 2.1.0 |
Τελευταία Ενημέρωση | 2023-04-29 |
Ημερομηνία Δημοσίευσης | 2016-08-14 |
Αξιολόγηση | 3.78/5 Συνολικά 9 Αξιολογήσεις |
Προγραμματιστής | mikeyaworski |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/mikeyaworski/Hide-Twitch-Chat-Users |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/mikeyaworski/Hide-Twitch-Chat-Users/issues |
Υποστηριζόμενες Γλώσσες | 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" ] } |