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 |
电子邮箱 | [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" ] } |