YouTube Blur
Avoid distractions on YouTube by blurring the thumbnails on the homepage
Cos'è YouTube Blur?
YouTube Blur è un'estensione di Chrome sviluppata da codedbyleo, e la sua funzione principale è "Avoid distractions on YouTube by blurring the thumbnails on the homepage".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouTube Blur
Scarica i file di estensione YouTube Blur 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
With YouTube Blur you'll be able to focus on your work, education or creativity without getting distracted by YouTube's recommended videos in the homepage. Simply install the extension on chrome, toggle on the YouTube Blur switch, and prepare for a new level of focus! PRIVACY I do not read, examine or track your browser history or any other personal information. The only permissions required for are "tabs" to insert the functionality and "storage" to store your settings.
Informazioni di Base sull'Estensione
Nome | YouTube Blur |
ID | kdokcakcfbknongpohpabejbmoocddhh |
URL Ufficiale | https://chromewebstore.google.com/detail/youtube-blur/kdokcakcfbknongpohpabejbmoocddhh |
Descrizione | Avoid distractions on YouTube by blurring the thumbnails on the homepage |
Dimensione del File | 17.86 KB |
Conteggio Installazioni | 569 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2021-09-27 |
Data di Pubblicazione | 2021-09-24 |
Valutazione | 4.00/5 Totale 2 Valutazioni |
Sviluppatore | codedbyleo |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Blur", "description": "Avoid distractions on YouTube by blurring the thumbnails on the homepage", "manifest_version": 3, "version": "1.0.0", "icons": { "128": "icon_128.png" }, "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "tabs", "storage" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/" ], "js": [ "blur.js" ] } ] } |