YouTube Distraction Disabler
Remove distracting video suggestions on YouTube.
O que é YouTube Distraction Disabler?
YouTube Distraction Disabler é uma extensão do Chrome desenvolvida por kaiqi.liang, e sua principal característica é "Remove distracting video suggestions on YouTube.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YouTube Distraction Disabler
Baixe arquivos de extensão YouTube Distraction Disabler 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
Just spent an hour on YouTube but still haven't got to the video that you set out to watch? Wanted to learn something on YouTube but always get distracted by your recommended feed? Fear no more, "YouTube Distraction Disabler" is here to remove all of the unrelated videos on YouTube and only show you what you want. Finally got some free time and want to deliberately procrastinate on YouTube? That's ok too, just simply click the extension icon and turn off one of the options that you choose to block. The options are "Home", "Related", "Comments" and "Notifications", which corresponds to your home feed, related videos next to the video you're currently watching, the comments down below as well as the notification bell.
Informações Básicas da Extensão
Nome | YouTube Distraction Disabler |
ID | klhmhijgenkomhcobnbdnjkkefbghfab |
URL Oficial | https://chromewebstore.google.com/detail/youtube-distraction-disab/klhmhijgenkomhcobnbdnjkkefbghfab |
Descrição | Remove distracting video suggestions on YouTube. |
Tamanho do Arquivo | 12.64 KB |
Contagem de Instalações | 163 |
Versão Atual | 0.0.4 |
Última Atualização | 2023-01-18 |
Data de Publicação | 2020-12-07 |
Classificação | 5.00/5 Total de 5 Avaliações |
Desenvolvedor | kaiqi.liang |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/Kaiqi-Liang/YouTube-Distraction-Disabler |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Distraction Disabler", "version": "0.0.4", "description": "Remove distracting video suggestions on YouTube.", "manifest_version": 2, "page_action": { "default_icon": "assets\/logo.png" }, "icons": { "128": "assets\/logo.png" }, "permissions": [ "contextMenus", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "extension.js" ], "css": [ "style.css" ], "run_at": "document_end" } ], "web_accessible_resources": [ "assets\/*.svg" ] } |