HyperChat [Improved YouTube Chat]
Improved YouTube chat with CPU/RAM optimizations, customization options, and cutting-edge features!
Cos'è HyperChat [Improved YouTube Chat]?
HyperChat [Improved YouTube Chat] è un'estensione di Chrome sviluppata da Kento Nishi, e la sua funzione principale è "Improved YouTube chat with CPU/RAM optimizations, customization options, and cutting-edge features!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione HyperChat [Improved YouTube Chat]
Scarica i file di estensione HyperChat [Improved YouTube Chat] in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
HyperChat improves the YouTube livestream chat experience with a suite of CPU/RAM optimizations, customization options, and cutting-edge features! FEATURES ▶ CPU/RAM Optimizations ➣ Memory leak patches ➣ Custom-built message renderer ➣ Cross-extension message parser ▶ Customizable appearance ➣ Light/dark theme ➣ Show/hide: • Profile icons • Timestamps • Usernames • User badges • Mentions • Emojis ➣ Toggle sticky superchats ➣ Render system-native emojis ▶ Quality-of-life features ➣ Translate messages with Google Translate ➣ Member-only message filter ➣ Skip emoji-only messages ➣ Auto-switch to "Live Chat" HyperChat is compatible with other chat extensions such as LiveTL and YtcFilter. HyperChat is maintained by the same developers behind LiveTL. HyperChat is, and always will be, fully free and open source. Website: https://livetl.app/hyperchat GitHub: https://github.com/LiveTL/HyperChat Donate: http://opencollective.com/livetl
Informazioni di Base sull'Estensione
Nome | HyperChat [Improved YouTube Chat] |
ID | naipgebhooiiccifflecbffmnjbabdbh |
URL Ufficiale | https://chromewebstore.google.com/detail/hyperchat-improved-youtub/naipgebhooiiccifflecbffmnjbabdbh |
Descrizione | Improved YouTube chat with CPU/RAM optimizations, customization options, and cutting-edge features! |
Dimensione del File | 1.15 MB |
Conteggio Installazioni | 10,000 |
Versione Corrente | 2.6.13 |
Ultimo Aggiornamento | 2024-02-25 |
Data di Pubblicazione | 2021-03-08 |
Valutazione | 4.68/5 Totale 102 Valutazioni |
Sviluppatore | Kento Nishi |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://livetl.app/hyperchat |
URL della Pagina di Aiuto | https://discord.gg/uJrV3tmthg |
URL della Pagina della Politica sulla Privacy | https://livetl.app/privacy |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "HyperChat [Improved YouTube Chat]", "homepage_url": "https:\/\/livetl.app\/en\/hyperchat\/", "description": "Improved YouTube chat with CPU\/RAM optimizations, customization options, and cutting-edge features!", "version": "2.6.13", "permissions": [ "storage" ], "icons": { "48": "assets\/logo-48.png", "128": "assets\/logo-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/live_chat*", "https:\/\/www.youtube.com\/live_chat_replay*", "https:\/\/studio.youtube.com\/live_chat*", "https:\/\/studio.youtube.com\/live_chat_replay*" ], "js": [ "scripts\/chat-interceptor.js", "scripts\/chat-injector.js" ], "css": [ "stylesheets\/titlebar.css" ], "all_frames": true } ], "background": { "scripts": [ "scripts\/chat-background.js" ], "persistent": true }, "browser_action": { "default_icon": { "48": "assets\/logo-48.png", "128": "assets\/logo-128.png" } }, "web_accessible_resources": [ "*" ], "options_ui": { "page": "options.html", "open_in_tab": true }, "incognito": "split" } |