Video Blocker
Video Blocker
Qu'est-ce que Video Blocker ?
Video Blocker est une extension Chrome développée par Ran Leonard, et sa fonction principale est "Video Blocker".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Video Blocker
Téléchargez les fichiers d'extension Video 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
Video Blocker allows you to hide videos from channels that you want to prevent your kids or yourself from watching. You can specify these channels by going to one of their videos, clicking the extension at top right of the Chrome browser, and clicking the 'block' button. If you find any bugs or have any other problems with this extension, please notify me via the support option on the details-tab on this page. It is very difficult to help you out if you report a problem via the comments, since there is no way for me to respond to you. Good luck and happy video blocking!
Informations de Base sur l'Extension
Nom | |
ID | hficoaacnnfallmajhbmkakebpfllpbi |
URL Officiel | https://chrome.google.com/webstore/detail/video-blocker/hficoaacnnfallmajhbmkakebpfllpbi |
Description | Video Blocker |
Taille du Fichier | 161 KB |
Nombre d'Installations | 3,000 |
Version Actuelle | 1.0.4 |
Dernière Mise à Jour | 2017-10-26 |
Date de Publication | 2017-10-26 |
Évaluation | 2.04/5 Total 23 Évaluations |
Développeur | Ran Leonard |
[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": "Video Blocker", "description": "Video Blocker", "version": "1.0.4", "permissions": [ "tabs", "storage", "contextMenus" ], "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png" }, "browser_action": { "default_popup": "popup.html", "title": "test" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*", "http:\/\/*.youtube.com\/*" ], "js": [ "js\/jquery-2.0.3.min.js", "js\/analytics.js", "js\/custom_content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "js\/jquery-2.0.3.min.js", "js\/analytics.js", "js\/background.js" ], "persistent": false }, "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'" } |