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 |
官方網址 | 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\/" ] } |