Youtube Video Blocker
Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.
Qu'est-ce que Youtube Video Blocker ?
Youtube Video Blocker est une extension Chrome développée par bmoses1124, et sa fonction principale est "Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Youtube Video Blocker
Téléchargez les fichiers d'extension Youtube 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
An extension to block Youtube videos with undesired keywords. Enter the keywords into a settings page, and videos with those keywords in their titles will not appear.
Informations de Base sur l'Extension
Nom | |
ID | cbkaomkmifobpbdkhhiincnigngeckfc |
URL Officiel | https://chrome.google.com/webstore/detail/youtube-video-blocker/cbkaomkmifobpbdkhhiincnigngeckfc |
Description | Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed. |
Taille du Fichier | 6.02 KB |
Nombre d'Installations | 555 |
Version Actuelle | 0.1 |
Dernière Mise à Jour | 2020-12-23 |
Date de Publication | 2020-12-23 |
Évaluation | 1.00/5 Total 3 Évaluations |
Développeur | bmoses1124 |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Video Blocker", "version": "0.1", "description": "Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.", "browser_action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "block_youtube_vids.js" ] } ], "permissions": [ "storage" ], "options_page": "options.html", "manifest_version": 2 } |