Channel Blocker

Block irrelevant channels from the home page of youtube.

Was ist Channel Blocker?

Channel Blocker ist eine Chrome-Erweiterung, die von xanderjakeq entwickelt wurde, und ihr Hauptmerkmal ist "Block irrelevant channels from the home page of youtube.".

Erweiterungsscreenshots

screenshot

Channel Blocker-Erweiterungs-CRX-Datei herunterladen

Laden Sie Channel Blocker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Channel Blocker Channel Blocker
ID bdcfpamdaoifippnlppibiejaagbihon
Offizielle URL https://chromewebstore.google.com/detail/channel-blocker/bdcfpamdaoifippnlppibiejaagbihon
Beschreibung Block irrelevant channels from the home page of youtube.
Dateigröße 10.86 KB
Installationsanzahl 1,636
Aktuelle Version 1.1.1
Letztes Update 2022-06-21
Veröffentlichungsdatum 2019-09-04
Bewertung 1.80/5 Insgesamt 5 Bewertungen
Entwickler xanderjakeq
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/thelostcreatives/youtube_channel_blocker
Unterstützte Sprachen 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"
    }
}