Filter Youtube Channels

Filter out the YouTube videos by the channels you don't like even when you are not signed in to YouTube!!

¿Qué es Filter Youtube Channels?

Filter Youtube Channels es una extensión de Chrome desarrollada por QubitKernel, y su función principal es "Filter out the YouTube videos by the channels you don't like even when you are not signed in to YouTube!!".

Capturas de Pantalla de la Extensión

Descargar Archivo CRX de la Extensión Filter Youtube Channels

Descarga archivos de extensión Filter Youtube Channels 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

                        Just feed in the name of the channel and it will remember to keep the videos out of your sight.

You can always un-filter or unblock the videos by just clicking "Remove" button in the plugin popup. Extremely easy!

This plugin does not track or store any kind of data, user or otherwise, at remote servers!

Remember to turn it on in incognito/private mode!                    

Información Básica de la Extensión

Nombre Filter Youtube Channels Filter Youtube Channels
ID nchjfnobpfpkgmhagecolagcfemdkjfm
URL Oficial https://chrome.google.com/webstore/detail/filter-youtube-channels/nchjfnobpfpkgmhagecolagcfemdkjfm
Descripción Filter out the YouTube videos by the channels you don't like even when you are not signed in to YouTube!!
Tamaño del Archivo 27.94 KB
Cantidad de Instalaciones 113
Versión Actual 0.0.0.8
Última Actualización 2019-11-24
Fecha de Publicación 2019-11-24
Calificación 2.33/5 Total de 3 Calificaciones
Desarrollador QubitKernel
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Filter Youtube Channels",
    "version": "0.0.0.8",
    "description": "Filter out the YouTube videos by the channels you don't like even when you are not signed in to YouTube!!",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon_128.png"
    }
}