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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Makes chat easier to read for streamers and moderators by filtering and highlighting chat messages."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube Live Chat Enhancement एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } |