YouFocus - YouTube Filter
A filter for YouTube videos.
Cos'è YouFocus - YouTube Filter?
YouFocus - YouTube Filter è un'estensione di Chrome sviluppata da Practimake, e la sua funzione principale è "A filter for YouTube videos.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouFocus - YouTube Filter
Scarica i file di estensione YouFocus - YouTube Filter 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
Now you can filter your recommended YouTube videos based on the words in the title and channel name! Stop the distractions and 2am YouTube sessions and focus on the videos that matter to you.
Informazioni di Base sull'Estensione
Nome | YouFocus - YouTube Filter |
ID | nlokjknlncdcjohkpclkbeofefnmjaad |
URL Ufficiale | https://chromewebstore.google.com/detail/youfocus-youtube-filter/nlokjknlncdcjohkpclkbeofefnmjaad |
Descrizione | A filter for YouTube videos. |
Dimensione del File | 729 KB |
Conteggio Installazioni | 230 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2020-07-17 |
Data di Pubblicazione | 2020-07-15 |
Valutazione | 4.80/5 Totale 5 Valutazioni |
Sviluppatore | Practimake |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouFocus - YouTube Filter", "description": "A filter for YouTube videos.", "version": "1.0.1", "icons": { "128": "funnelV2.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "utils.js", "content.js" ] } ], "background": { "scripts": [ "utils.js", "background.js" ] }, "page_action": { "default_icon": "funnelV2.png" }, "options_page": "options.html", "permissions": [ "storage", "declarativeContent" ] } |