YouTube Blur
Avoid distractions on YouTube by blurring the thumbnails on the homepage
O que é YouTube Blur?
YouTube Blur é uma extensão do Chrome desenvolvida por codedbyleo, e sua principal característica é "Avoid distractions on YouTube by blurring the thumbnails on the homepage".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YouTube Blur
Baixe arquivos de extensão YouTube Blur no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | YouTube Blur |
ID | kdokcakcfbknongpohpabejbmoocddhh |
URL Oficial | https://chromewebstore.google.com/detail/youtube-blur/kdokcakcfbknongpohpabejbmoocddhh |
Descrição | Avoid distractions on YouTube by blurring the thumbnails on the homepage |
Tamanho do Arquivo | 17.86 KB |
Contagem de Instalações | 569 |
Versão Atual | 1.0.0 |
Última Atualização | 2021-09-27 |
Data de Publicação | 2021-09-24 |
Classificação | 4.00/5 Total de 2 Avaliações |
Desenvolvedor | codedbyleo |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |