YouTube Blur
Avoid distractions on YouTube by blurring the thumbnails on the homepage
¿Qué es YouTube Blur?
YouTube Blur es una extensión de Chrome desarrollada por codedbyleo, y su función principal es "Avoid distractions on YouTube by blurring the thumbnails on the homepage".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión YouTube Blur
Descarga archivos de extensión YouTube Blur en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | YouTube Blur |
ID | kdokcakcfbknongpohpabejbmoocddhh |
URL Oficial | https://chromewebstore.google.com/detail/youtube-blur/kdokcakcfbknongpohpabejbmoocddhh |
Descripción | Avoid distractions on YouTube by blurring the thumbnails on the homepage |
Tamaño del Archivo | 17.86 KB |
Cantidad de Instalaciones | 569 |
Versión Actual | 1.0.0 |
Última Actualización | 2021-09-27 |
Fecha de Publicación | 2021-09-24 |
Calificación | 4.00/5 Total de 2 Calificaciones |
Desarrollador | codedbyleo |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } ] } |