HyperChat [Improved YouTube Chat]

Improved YouTube chat with CPU/RAM optimizations, customization options, and cutting-edge features!

Was ist HyperChat [Improved YouTube Chat]?

HyperChat [Improved YouTube Chat] ist eine Chrome-Erweiterung, die von Kento Nishi entwickelt wurde, und ihr Hauptmerkmal ist "Improved YouTube chat with CPU/RAM optimizations, customization options, and cutting-edge features!".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

HyperChat [Improved YouTube Chat]-Erweiterungs-CRX-Datei herunterladen

Laden Sie HyperChat [Improved YouTube Chat]-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name HyperChat [Improved YouTube Chat] HyperChat [Improved YouTube Chat]
ID naipgebhooiiccifflecbffmnjbabdbh
Offizielle URL https://chromewebstore.google.com/detail/hyperchat-improved-youtub/naipgebhooiiccifflecbffmnjbabdbh
Beschreibung Improved YouTube chat with CPU/RAM optimizations, customization options, and cutting-edge features!
Dateigröße 1.15 MB
Installationsanzahl 10,000
Aktuelle Version 2.6.13
Letztes Update 2024-02-25
Veröffentlichungsdatum 2021-03-08
Bewertung 4.68/5 Insgesamt 102 Bewertungen
Entwickler Kento Nishi
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://livetl.app/hyperchat
Hilfeseite URL https://discord.gg/uJrV3tmthg
URL der Datenschutzrichtlinien-Seite https://livetl.app/privacy
Unterstützte Sprachen 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"
}