Block Youtube Channels
Blocks Youtube channels and hides their videos.
Block Youtube Channels क्या है?
Block Youtube Channels blockchannel.ytb द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Blocks Youtube channels and hides their videos."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Block Youtube Channels एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Allows you to hide videos uploaded by certain Youtube channels from appearing in you feed and other locations on Youtube. You can also hide videos based on some keywords. Features * Hide videos by blocked channels * Hide videos whose title contain blocked keywords NOTE: Channels are not blocked, only videos uploaded by them are hidden in Youtube. Changelog Version 2.00 * Add keyword based blocking * Badge text Version 1.4 * Minor fixes Version 1.3 * Hide related/featured channels * Minor fixes Version 1.2 * Make it work with channels without user * Add links to blocked channels * Bug fix to hide videos in sidebar Version 1.1 * Add 'Block' button to videos page.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | bdabpienmkhglpmbkmnlhhcikogkihim |
आधिकारिक URL | https://chrome.google.com/webstore/detail/block-youtube-channels/bdabpienmkhglpmbkmnlhhcikogkihim |
विवरण | Blocks Youtube channels and hides their videos. |
फ़ाइल का आकार | 53.88 KB |
स्थापना संख्या | 5,000 |
वर्तमान संस्करण | 2.2.1 |
अंतिम अपडेट | 2017-07-09 |
प्रकाशन तिथि | 2017-07-09 |
रेटिंग | 1.89/5 कुल 104 रेटिंग्स |
डेवलपर | blockchannel.ytb |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://github.com/aniket134/blockchannel |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Block Youtube Channels", "description": "Blocks Youtube channels and hides their videos.", "version": "2.2.1", "browser_action": { "default_icon": { "32": "icon32.png" }, "default_title": "Block Youtube Channels", "default_popup": "popup.html" }, "permissions": [ "storage", "webNavigation", "tabs", "declarativeContent", "activeTab", "*:\/\/*.youtube.com\/*", "*:\/\/youtube.com\/*" ], "background": { "scripts": [ "jquery.js", "events.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*", "*:\/\/youtube.com\/*" ], "js": [ "jquery.js", "utils.js", "trie.js", "db.js", "content_script.js" ], "run_at": "document_end" } ] } |