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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sirvival และคุณลักษณะหลักของมันคือ "Makes chat easier to read for streamers and moderators by filtering and highlighting chat messages."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Live Chat Enhancement
ดาวน์โหลดไฟล์ส่วนขยาย YouTube Live Chat Enhancement ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } |