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はmikeyaworskiによって開発されたChromeの拡張機能で、その主な機能は「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拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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" ] } |