YouTube Distraction Killer
Remove distracting elements from YouTube's layout
O que é YouTube Distraction Killer?
YouTube Distraction Killer é uma extensão do Chrome desenvolvida por nizioleque, e sua principal característica é "Remove distracting elements from YouTube's layout".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YouTube Distraction Killer
Baixe arquivos de extensão YouTube Distraction Killer 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
Do you find yourself watching cute kitten videos instead of educational content all the time? Get rid of all the reccomendations, suggestions, comments and other tempting buttons! Easily choose what is hidden using the options menu! If you experience any issues, please feel free to email me with a bug report.
Informações Básicas da Extensão
Nome | YouTube Distraction Killer |
ID | pahjidceabkifggkmokpmlmhoaiflaeh |
URL Oficial | https://chromewebstore.google.com/detail/youtube-distraction-kille/pahjidceabkifggkmokpmlmhoaiflaeh |
Descrição | Remove distracting elements from YouTube's layout |
Tamanho do Arquivo | 28.3 KB |
Contagem de Instalações | 153 |
Versão Atual | 1.3 |
Última Atualização | 2022-04-19 |
Data de Publicação | 2022-04-19 |
Classificação | 4.75/5 Total de 4 Avaliações |
Desenvolvedor | nizioleque |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_extName__", "description": "__MSG_extDescription__", "version": "1.3", "default_locale": "en", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "storage" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "options\/options.html" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content\/content.js" ], "run_at": "document_end" } ], "options_ui": { "page": "options\/options.html", "open_in_tab": false } } |