WompChat

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

WompChat란 무엇입니까?

WompChat은(는) http://wompmacho.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enhances the YouTube Live Streaming experience with Emotes, Custom Styling and quality of life improvements."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

WompChat 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 WompChat WompChat
ID ojmdgniicplehoccoggghbgcliebalhj
공식 URL https://chrome.google.com/webstore/detail/wompchat/ojmdgniicplehoccoggghbgcliebalhj
설명 Enhances the YouTube Live Streaming experience with Emotes, Custom Styling and quality of life improvements.
파일 크기 322 KB
설치 횟수 93
현재 버전 1.0.5
최근 업데이트 2021-09-04
출시 날짜 2020-10-30
평점 5.00/5 총 4 개의 평점
개발자 http://wompmacho.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://wompmacho.com/wompchat
도움말 페이지 URL https://github.com/wompmacho/wompchat
지원되는 언어 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\/*"
    ]
}