ytcFilter
When Youtube chat is too fast
ytcFilter क्या है?
ytcFilter Kento Nishi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "When Youtube chat is too fast"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ytcFilter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Capture messages from Youtube chat based on filter rules. It comes with preset in order to filter: - English tagged messages - Messages with Japanese characters - Messages with alphanumeric characters - Messages from staff For more customization, It supports the following filters: * nickname * message including text * moderator * channel owner * membership * verified user * super chat * regular expression It works with the standard Youtube chat, but also embedded chat in 3rd party websites, Youtube popout chat. Your filtered message will appear either above Youtube's chat, or in a popout. Youtube's block/report button is integrated to fight against spam. All messages are archived too so that you can come back to them later.
एक्सटेंशन की मूल जानकारी
नाम | ytcFilter |
ID | mnldnbhgfocmkehnlkeanlhfmopepnko |
आधिकारिक URL | https://chromewebstore.google.com/detail/ytcfilter/mnldnbhgfocmkehnlkeanlhfmopepnko |
विवरण | When Youtube chat is too fast |
फ़ाइल का आकार | 1.4 MB |
स्थापना संख्या | 12,782 |
वर्तमान संस्करण | 2.2.0 |
अंतिम अपडेट | 2021-06-30 |
प्रकाशन तिथि | 2020-08-20 |
रेटिंग | 4.30/5 कुल 56 रेटिंग्स |
डेवलपर | Kento Nishi |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://github.com/RomainLK/ytc-filter |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ytcFilter", "description": "When Youtube chat is too fast", "version": "2.2.0", "manifest_version": 2, "icons": { "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "browser_action": { "default_title": "ytcFilter", "default_popup": "popup\/popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "web_accessible_resources": [ "content-style.css", "inject.js" ], "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/www.youtube.com\/live_chat*", "https:\/\/studio.youtube.com\/video\/*" ], "all_frames": true, "css": [ "content-style.css" ], "js": [ "content.js" ] } ], "permissions": [ "storage" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';", "browser_specific_settings": { "gecko": { "id": "{20f2dcdf-6f8d-4aeb-862b-b13174475d9c}", "strict_min_version": "48.0" } } } |