YouTube Live Chat Enhancement
Makes chat easier to read for streamers and moderators by filtering and highlighting chat messages.
YouTube Live Chat Enhancement란 무엇입니까?
YouTube Live Chat Enhancement은(는) sirvival에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes chat easier to read for streamers and moderators by filtering and highlighting chat messages."입니다.
확장 프로그램 스크린샷
YouTube Live Chat Enhancement 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
YouTube Live Chat Enhancement Allows for the option to: Filtering out chat from specific users (ie: Nightbot) or !commands. Completely remove deleted/retracted chat messages. Use a hotkey to highlight the most recent chat message so you will know where to you left off. Highlight special users who you don't want to miss For mods out there is an option to: Auto reveal deleted chat messages so it's easier to make sure the right things are being deleted. Highlight certain words to bring attention to things that might need to be moderated. To use this extension simply open up a gaming.youtube.com stream and you will notice two new buttons at the top of the chat allowing you to enable "Filtering" and "Moderation" options.
확장 프로그램 기본 정보
이름 | YouTube Live Chat Enhancement |
ID | akikhgecfhfbdmiccfbgdmcjjbaiohbi |
공식 URL | https://chromewebstore.google.com/detail/youtube-live-chat-enhance/akikhgecfhfbdmiccfbgdmcjjbaiohbi |
설명 | Makes chat easier to read for streamers and moderators by filtering and highlighting chat messages. |
파일 크기 | 97.35 KB |
설치 횟수 | 2,240 |
현재 버전 | 1.43 |
최근 업데이트 | 2019-07-06 |
출시 날짜 | 2019-07-05 |
평점 | 3.93/5 총 15 개의 평점 |
개발자 | sirvival |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_title": "YouTube Live Chat Enhancement by Codezen" }, "description": "Makes chat easier to read for streamers and moderators by filtering and highlighting chat messages.", "icons": { "128": "icon128.png", "16": "icon16.png", "48": "icon48.png" }, "commands": { "highlight-latest-chat": { "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" }, "description": "Highlight Latest Chat" } }, "content_scripts": [ { "js": [ "jquery.js", "chat.js" ], "css": [ "chat.css" ], "matches": [ "https:\/\/www.youtube.com\/*" ], "run_at": "document_end" } ], "permissions": [ "storage" ], "manifest_version": 2, "name": "YouTube Live Chat Enhancement", "options_page": "options.html", "version": "1.43" } |