Channel Blocker
Block irrelevant channels from the home page of youtube.
O que é Channel Blocker?
Channel Blocker é uma extensão do Chrome desenvolvida por xanderjakeq, e sua principal característica é "Block irrelevant channels from the home page of youtube.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Channel Blocker
Baixe arquivos de extensão Channel Blocker 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
Stay productive while on Youtube by blocking distracting or irrelevant content from specific channels out of your homepage. You can't click on them if can't see them.
Informações Básicas da Extensão
Nome | Channel Blocker |
ID | bdcfpamdaoifippnlppibiejaagbihon |
URL Oficial | https://chromewebstore.google.com/detail/channel-blocker/bdcfpamdaoifippnlppibiejaagbihon |
Descrição | Block irrelevant channels from the home page of youtube. |
Tamanho do Arquivo | 10.86 KB |
Contagem de Instalações | 1,636 |
Versão Atual | 1.1.1 |
Última Atualização | 2022-06-21 |
Data de Publicação | 2019-09-04 |
Classificação | 1.80/5 Total de 5 Avaliações |
Desenvolvedor | xanderjakeq |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/thelostcreatives/youtube_channel_blocker |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Channel Blocker", "author": "1o1.wtf [https:\/\/github.com\/thelostcreatives]", "description": "Block irrelevant channels from the home page of youtube.", "version": "1.1.1", "action": { "default_popup": "popup.html", "default_icon": { "48": "\/icon.png" } }, "permissions": [ "notifications", "storage", "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "background": { "service_worker": "background.js" } } |