Filter Youtube Channels

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

Co je Filter Youtube Channels?

Filter Youtube Channels je rozšíření Chrome vyvinuté QubitKernel, a jeho hlavní funkcí je „Filter out the YouTube videos by the channels you don't like even when you are not signed in to YouTube!!“.

Snímky obrazovky rozšíření

Stáhnout soubor CRX rozšíření Filter Youtube Channels

Stáhněte si soubory rozšíření Filter Youtube Channels ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název Filter Youtube Channels Filter Youtube Channels
ID nchjfnobpfpkgmhagecolagcfemdkjfm
Oficiální URL https://chrome.google.com/webstore/detail/filter-youtube-channels/nchjfnobpfpkgmhagecolagcfemdkjfm
Popis Filter out the YouTube videos by the channels you don't like even when you are not signed in to YouTube!!
Velikost souboru 27.94 KB
Počet instalací 113
Aktuální Verze 0.0.0.8
Poslední Aktualizace 2019-11-24
Datum Vydání 2019-11-24
Hodnocení 2.33/5 Celkem 3 Hodnocení
Vývojář QubitKernel
Typ Platby free
Podporované Jazyky 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"
    }
}