Channel Blocker

Block irrelevant channels from the home page of youtube.

¿Qué es Channel Blocker?

Channel Blocker es una extensión de Chrome desarrollada por xanderjakeq, y su función principal es "Block irrelevant channels from the home page of youtube.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Channel Blocker

Descarga archivos de extensión Channel Blocker en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Channel Blocker Channel Blocker
ID bdcfpamdaoifippnlppibiejaagbihon
URL Oficial https://chromewebstore.google.com/detail/channel-blocker/bdcfpamdaoifippnlppibiejaagbihon
Descripción Block irrelevant channels from the home page of youtube.
Tamaño del Archivo 10.86 KB
Cantidad de Instalaciones 1,636
Versión Actual 1.1.1
Última Actualización 2022-06-21
Fecha de Publicación 2019-09-04
Calificación 1.80/5 Total de 5 Calificaciones
Desarrollador xanderjakeq
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/thelostcreatives/youtube_channel_blocker
Idiomas Soportados 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"
    }
}