Twitch Chat Header Cleaner
Get rid of chat header. (Ctrl + Q to switch)
什么是Twitch Chat Header Cleaner?
Twitch Chat Header Cleaner是由뽀르삐리开发的Chrome扩展程序,该扩展的主要功能是“Get rid of chat header. (Ctrl + Q to switch)”。
扩展截图
下载Twitch Chat Header Cleaner扩展crx文件
下载Twitch Chat Header Cleaner扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Automatically removes everything on the chat header. *Caution* Point betting is also hidden by default. You can turn on/off with Ctrl + Q shortcut or extension icon click. https://github.com/porpyry/twitch-header-cleaner
扩展基本信息
名称 | Twitch Chat Header Cleaner |
ID | ejmlhjmoagijdalknicbnmbljhpipbme |
官方URL | https://chromewebstore.google.com/detail/twitch-chat-header-cleane/ejmlhjmoagijdalknicbnmbljhpipbme |
简介 | Get rid of chat header. (Ctrl + Q to switch) |
文件大小 | 11.22 KB |
安装次数 | 141 |
当前版本 | 2.4 |
更新时间 | 2023-09-08 |
上架时间 | 2022-02-07 |
评分 | 5.00/5 共3次评分 |
开发者 | 뽀르삐리 |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_appName__", "version": "2.4", "action": [], "description": "__MSG_appDesc__", "default_locale": "en", "icons": { "128": "\/icon\/twitch_icon_128.png" }, "background": { "service_worker": "background.js" }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Q", "windows": "Ctrl+Q", "mac": "Command+Q", "linux": "Ctrl+Q" } } }, "content_scripts": [ { "matches": [ "https:\/\/www.twitch.tv\/*" ], "js": [ "content-script.js" ], "css": [ "content-style.css" ] } ], "host_permissions": [ "https:\/\/www.twitch.tv\/" ] } |