Twitch Chat Header Cleaner
Get rid of chat header. (Ctrl + Q to switch)
What is Twitch Chat Header Cleaner?
Twitch Chat Header Cleaner is a Chrome extension developed by 뽀르삐리, and its main feature is "Get rid of chat header. (Ctrl + Q to switch)".
Extension Screenshots
Download Twitch Chat Header Cleaner Extension CRX File
Download Twitch Chat Header Cleaner extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Twitch Chat Header Cleaner |
ID | ejmlhjmoagijdalknicbnmbljhpipbme |
Official URL | https://chromewebstore.google.com/detail/twitch-chat-header-cleane/ejmlhjmoagijdalknicbnmbljhpipbme |
Description | Get rid of chat header. (Ctrl + Q to switch) |
File Size | 11.22 KB |
Installation Count | 141 |
Current Version | 2.4 |
Last Updated | 2023-09-08 |
Publish Date | 2022-02-07 |
Rating | 5.00/5 Total 3 Ratings |
Developer | 뽀르삐리 |
[email protected] | |
Payment Type | free |
Supported Languages | 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\/" ] } |