YouTube Live Chat Enhancement
Makes chat easier to read for streamers and moderators by filtering and highlighting chat messages.
YouTube Live Chat Enhancement là gì?
YouTube Live Chat Enhancement là một tiện ích mở rộng Chrome được phát triển bởi sirvival, và tính năng chính của nó là "Makes chat easier to read for streamers and moderators by filtering and highlighting chat messages.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng YouTube Live Chat Enhancement
Tải xuống các tệp mở rộng YouTube Live Chat Enhancement dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | YouTube Live Chat Enhancement |
ID | akikhgecfhfbdmiccfbgdmcjjbaiohbi |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-live-chat-enhance/akikhgecfhfbdmiccfbgdmcjjbaiohbi |
Mô tả | Makes chat easier to read for streamers and moderators by filtering and highlighting chat messages. |
Kích Thước Tệp | 97.35 KB |
Số Lần Cài Đặt | 2,240 |
Phiên Bản Hiện Tại | 1.43 |
Cập Nhật Lần Cuối | 2019-07-06 |
Ngày Phát Hành | 2019-07-05 |
Đánh Giá | 3.93/5 Tổng số 15 Đánh Giá |
Nhà Phát Triển | sirvival |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } |