Youtube Blocker
Block all YouTube videos except white-listed channels to protect your children
Youtube Blocker क्या है?
Youtube Blocker Boshra द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Block all YouTube videos except white-listed channels to protect your children"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Youtube Blocker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
YouTube Blocker allows you to block all YouTube videos except white-listed channels. You can specify these channels by adding them in a password protected list. YouTube Blocker allows you to set maximum daily usage time of YouTube for weekends and weekdays.
एक्सटेंशन की मूल जानकारी
नाम | Youtube Blocker |
ID | cbdgjmidolhjfmepekiebhjmmgodednm |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-blocker/cbdgjmidolhjfmepekiebhjmmgodednm |
विवरण | Block all YouTube videos except white-listed channels to protect your children |
फ़ाइल का आकार | 619 KB |
स्थापना संख्या | 5,000 |
वर्तमान संस्करण | 1.1.4 |
अंतिम अपडेट | 2020-07-12 |
प्रकाशन तिथि | 2020-05-27 |
रेटिंग | 3.38/5 कुल 21 रेटिंग्स |
डेवलपर | Boshra |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube Blocker", "short_name": "Youtube Channels", "version": "1.1.4", "description": "Block all YouTube videos except white-listed channels to protect your children", "author": "Boshra Asaad", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "webRequest", "webRequestBlocking", "storage", "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "https:\/\/www.youtube.com\/*", "*:\/\/*.googlevideo.com\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.js" ], "run_at": "document_end" } ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "background": { "persistent": true, "scripts": [ "background.js" ] }, "browser_action": { "default_title": "Youtube Channels", "default_icon": "images\/icon19.png", "default_popup": "index.html" } } |