YouTube Blocker

Block unwanted YouTube channels.

O que é YouTube Blocker?

YouTube Blocker é uma extensão do Chrome desenvolvida por Przemysław Tyczyński, e sua principal característica é "Block unwanted YouTube channels.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão YouTube Blocker

Baixe arquivos de extensão YouTube 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

                        YouTube Blocker is an extension that aims to make your life easier, and by all means less stressful. 
We know that the YouTube feed can be troublesome sometimes, to say the least. 
For that reason, we put forward a much needed solution to aforementioned problem.

Hide unwanted content now.                    

Informações Básicas da Extensão

Nome YouTube Blocker YouTube Blocker
ID okgepglpkhgfhjonfceifgibiobjnodg
URL Oficial https://chrome.google.com/webstore/detail/youtube-blocker/okgepglpkhgfhjonfceifgibiobjnodg
Descrição Block unwanted YouTube channels.
Tamanho do Arquivo 96.3 KB
Contagem de Instalações 1,036
Versão Atual 1.0.0
Última Atualização 2020-04-21
Data de Publicação 2020-04-21
Classificação 5.00/5 Total de 5 Avaliações
Desenvolvedor Przemysław Tyczyński
Tipo de Pagamento free
Site da Extensão https://youtube-blocker.tyczynski.dev
URL da Página de Ajuda https://youtube-blocker.tyczynski.dev
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Blocker",
    "description": "Block unwanted YouTube channels.",
    "version": "1.0.0",
    "browser_action": {
        "default_title": "YouTube Blocker",
        "default_popup": "popup.html",
        "default_icon": {
            "16": ".\/icons\/icon-16.png",
            "48": ".\/icons\/icon-48.png",
            "128": ".\/icons\/icon-128.png"
        }
    },
    "icons": {
        "16": ".\/icons\/icon-16.png",
        "48": ".\/icons\/icon-48.png",
        "128": ".\/icons\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true,
        "chrome_style": true
    },
    "permissions": [
        "storage"
    ]
}