YouBlock
Since the recent update in YouTube the extension is a little buggy but it works with new messages... most of the time. It will not…
YouBlock क्या है?
YouBlock darby.rathbone द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Since the recent update in YouTube the extension is a little buggy but it works with new messages... most of the time. It will not…"।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouBlock एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Since the recent update in YouTube the extension is a little buggy but it works with new messages... most of the time. It will not block old messages that are in the chat before loading. You cannot block the people who sent the messages before your youtube loaded. Feel free to assist in the programming but looking at the github link at the bottom of this. This is a feature for YouTube streaming videos chat. When there are a bunch of spammers and reporting them for spam doesn't seem to be doing anything. All you have to do is install this refresh the streaming page and then "Report message" them once and they will no longer show up in your chat. I added the persistence that I originally wanted. To block someone permanently just block them once. To remove them from the blocked list now you need to click options in extensions and remove them from the list by clicking the X next to their name. I need to add some features still but you can see my progress or assist here https://github.com/darbicus/youBlock . You can also submit reports of issues there or request features.
एक्सटेंशन की मूल जानकारी
नाम | YouBlock |
ID | ihhpifdmgophogphhddppiclngkbhnal |
आधिकारिक URL | https://chromewebstore.google.com/detail/youblock/ihhpifdmgophogphhddppiclngkbhnal |
विवरण | Since the recent update in YouTube the extension is a little buggy but it works with new messages... most of the time. It will not… |
फ़ाइल का आकार | 19.04 KB |
स्थापना संख्या | 4,084 |
वर्तमान संस्करण | 2.0 |
अंतिम अपडेट | 2017-01-25 |
प्रकाशन तिथि | 2017-01-25 |
रेटिंग | 4.61/5 कुल 18 रेटिंग्स |
डेवलपर | darby.rathbone |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouBlock", "version": "2.0", "options_ui": { "page": "options.html", "chrome_style": true }, "storage": { "managed_schema": "schema.json" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "ContentScript.js" ] } ] } |