Filter Youtube Channels

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

Cos'è Filter Youtube Channels?

Filter Youtube Channels è un'estensione di Chrome sviluppata da QubitKernel, e la sua funzione principale è "Filter out the YouTube videos by the channels you don't like even when you are not signed in to YouTube!!".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione Filter Youtube Channels

Scarica i file di estensione Filter Youtube Channels in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Filter Youtube Channels Filter Youtube Channels
ID nchjfnobpfpkgmhagecolagcfemdkjfm
URL Ufficiale https://chrome.google.com/webstore/detail/filter-youtube-channels/nchjfnobpfpkgmhagecolagcfemdkjfm
Descrizione Filter out the YouTube videos by the channels you don't like even when you are not signed in to YouTube!!
Dimensione del File 27.94 KB
Conteggio Installazioni 113
Versione Corrente 0.0.0.8
Ultimo Aggiornamento 2019-11-24
Data di Pubblicazione 2019-11-24
Valutazione 2.33/5 Totale 3 Valutazioni
Sviluppatore QubitKernel
Tipo di Pagamento free
Lingue Supportate 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"
    }
}