WompChat

Enhances the YouTube Live Streaming experience with Emotes, Custom Styling and quality of life improvements.

Co to jest WompChat?

WompChat to rozszerzenie Chrome opracowane przez http://wompmacho.com, a jego główną funkcją jest „Enhances the YouTube Live Streaming experience with Emotes, Custom Styling and quality of life improvements.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia WompChat

Pobierz pliki rozszerzeń WompChat w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        NOTICE------- 

Some bugs have cropped up since last update 
(YouTube changed a bunch of things)
Check back in a few weeks, maybe I'll push out a update.

------

Quality of life improvements for YouTube live stream.

------ Adds in Emotes from various popular sites ------
😈 Currently includes ~500 Top and Trending Emotes from BTTV, FrankerFaces and Twitch Global Emotes. 

------ Adds custom styling options for a better chat experience ------
✅ Enhanced Theater Mode - Just Stream and Chat
✅ Font Size changes
✅ Default Selection to Live Chat - Rather than Top Chat
✅ Hide Author Icons
✅ Show Hidden TimeStamps
✅ Alternate line coloring for readability 
✅ Changing Username Colors for readability 
✅ Twitch Styling
✅ Hide the Welcome Banner

------ Add custom chat functionality ------
✅ Click a username in the chat to automatically append @ to the input area.

------ Soon To Come ------
🔜 Stream Overlay For Chat That Shows Emotes
🔜 Autocomplete for emote Selection
🔜 Unicode Font Converter
🔜 Theater Mode for regular YouTube
🔜 Better Moderation Option
🔜 User Profile Info Popup
🔜 YouTube Chatbot
🔜 Emote Library
🔜 Upload Your Own Emotes
🔜 Specific channel Emotes for WompChat                    

Podstawowe informacje o rozszerzeniu

Nazwa WompChat WompChat
ID ojmdgniicplehoccoggghbgcliebalhj
Oficjalny URL https://chrome.google.com/webstore/detail/wompchat/ojmdgniicplehoccoggghbgcliebalhj
Opis Enhances the YouTube Live Streaming experience with Emotes, Custom Styling and quality of life improvements.
Rozmiar pliku 322 KB
Liczba instalacji 93
Aktualna Wersja 1.0.5
Ostatnia Aktualizacja 2021-09-04
Data Publikacji 2020-10-30
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper http://wompmacho.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://wompmacho.com/wompchat
Adres URL Strony Pomocy https://github.com/wompmacho/wompchat
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WompChat",
    "version": "1.0.5",
    "description": "Enhances the YouTube Live Streaming experience with Emotes, Custom Styling and quality of life improvements.",
    "icons": {
        "128": "assets\/icons\/logo128.png"
    },
    "permissions": [
        "storage",
        "background"
    ],
    "options_ui": {
        "page": "html\/options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_popup": "html\/options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "assets\/*"
    ]
}