Channel Blocker

Block irrelevant channels from the home page of youtube.

Wat is Channel Blocker?

Channel Blocker is een Chrome-extensie ontwikkeld door xanderjakeq, en de belangrijkste functie is "Block irrelevant channels from the home page of youtube.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Channel Blocker

Download Channel Blocker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Channel Blocker Channel Blocker
ID bdcfpamdaoifippnlppibiejaagbihon
Officiële URL https://chromewebstore.google.com/detail/channel-blocker/bdcfpamdaoifippnlppibiejaagbihon
Beschrijving Block irrelevant channels from the home page of youtube.
Bestandsgrootte 10.86 KB
Aantal Installaties 1,636
Huidige Versie 1.1.1
Laatst Bijgewerkt 2022-06-21
Publicatiedatum 2019-09-04
Beoordeling 1.80/5 Totaal 5 Beoordelingen
Ontwikkelaar xanderjakeq
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/thelostcreatives/youtube_channel_blocker
Ondersteunde Talen 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"
    }
}