Youtube Title Blacklist
Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.
Cos'è Youtube Title Blacklist?
Youtube Title Blacklist è un'estensione di Chrome sviluppata da http://creativebuilds.io, e la sua funzione principale è "Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Youtube Title Blacklist
Scarica i file di estensione Youtube Title Blacklist in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | gcmgilkgahoblmnolplncmmkhmmbddfn |
URL Ufficiale | https://chrome.google.com/webstore/detail/youtube-title-blacklist/gcmgilkgahoblmnolplncmmkhmmbddfn |
Descrizione | Block videos from showing up in your home feed on YouTube that contain certain keywords that you set. |
Dimensione del File | 296 KB |
Conteggio Installazioni | 423 |
Versione Corrente | 1.0.2 |
Ultimo Aggiornamento | 2020-12-12 |
Data di Pubblicazione | 2020-12-09 |
Valutazione | 4.83/5 Totale 6 Valutazioni |
Sviluppatore | http://creativebuilds.io |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |