Youtube Title Blacklist
Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.
Qu'est-ce que Youtube Title Blacklist ?
Youtube Title Blacklist est une extension Chrome développée par http://creativebuilds.io, et sa fonction principale est "Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Youtube Title Blacklist
Téléchargez les fichiers d'extension Youtube Title Blacklist 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
A simple extension designed to block videos from showing up in your home feed on YouTube that contain certain keywords that you set. Useful for hiding content you don't want kids to be seeing.
Informations de Base sur l'Extension
Nom | |
ID | gcmgilkgahoblmnolplncmmkhmmbddfn |
URL Officiel | https://chrome.google.com/webstore/detail/youtube-title-blacklist/gcmgilkgahoblmnolplncmmkhmmbddfn |
Description | Block videos from showing up in your home feed on YouTube that contain certain keywords that you set. |
Taille du Fichier | 296 KB |
Nombre d'Installations | 423 |
Version Actuelle | 1.0.2 |
Dernière Mise à Jour | 2020-12-12 |
Date de Publication | 2020-12-09 |
Évaluation | 4.83/5 Total 6 Évaluations |
Développeur | http://creativebuilds.io |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube Title Blacklist", "version": "1.0.2", "description": "Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.", "icons": { "16": "assets\/icons\/icon16.png", "24": "assets\/icons\/icon24.png", "48": "assets\/icons\/icon48.png", "128": "assets\/icons\/icon128.png" }, "browser_action": { "default_icon": "assets\/icons\/icon16.png", "default_popup": "popup\/index.html", "default_title": "Youtube Title Blacklist - Settings" }, "content_scripts": [ { "js": [ "content\/index.js" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ], "background": { "scripts": [ "background\/index.js" ], "persistent": false }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "web_accessible_resources": [ "assets\/icons\/*.png" ], "permissions": [ "activeTab", "storage" ] } |