Youtube Blocker
Block all YouTube videos except white-listed channels to protect your children
Qu'est-ce que Youtube Blocker ?
Youtube Blocker est une extension Chrome développée par Boshra, et sa fonction principale est "Block all YouTube videos except white-listed channels to protect your children".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Youtube Blocker
Téléchargez les fichiers d'extension Youtube Blocker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Youtube Blocker |
ID | cbdgjmidolhjfmepekiebhjmmgodednm |
URL Officiel | https://chromewebstore.google.com/detail/youtube-blocker/cbdgjmidolhjfmepekiebhjmmgodednm |
Description | Block all YouTube videos except white-listed channels to protect your children |
Taille du Fichier | 619 KB |
Nombre d'Installations | 5,000 |
Version Actuelle | 1.1.4 |
Dernière Mise à Jour | 2020-07-12 |
Date de Publication | 2020-05-27 |
Évaluation | 3.38/5 Total 21 Évaluations |
Développeur | Boshra |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |