HyperChat [Improved YouTube Chat]
Improved YouTube chat with CPU/RAM optimizations, customization options, and cutting-edge features!
什么是HyperChat [Improved YouTube Chat]?
HyperChat [Improved YouTube Chat]是由Kento Nishi开发的Chrome扩展程序,该扩展的主要功能是“Improved YouTube chat with CPU/RAM optimizations, customization options, and cutting-edge features!”。
扩展截图
下载HyperChat [Improved YouTube Chat]扩展crx文件
下载HyperChat [Improved YouTube Chat]扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | HyperChat [Improved YouTube Chat] |
ID | naipgebhooiiccifflecbffmnjbabdbh |
官方URL | https://chromewebstore.google.com/detail/hyperchat-improved-youtub/naipgebhooiiccifflecbffmnjbabdbh |
简介 | Improved YouTube chat with CPU/RAM optimizations, customization options, and cutting-edge features! |
文件大小 | 1.15 MB |
安装次数 | 10,000 |
当前版本 | 2.6.13 |
更新时间 | 2024-02-25 |
上架时间 | 2021-03-08 |
评分 | 4.68/5 共102次评分 |
开发者 | Kento Nishi |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://livetl.app/hyperchat |
帮助页面URL | https://discord.gg/uJrV3tmthg |
隐私政策页面URL | https://livetl.app/privacy |
支持的语言 | 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" } |