Channel Blocker

Block irrelevant channels from the home page of youtube.

Qu'est-ce que Channel Blocker ?

Channel Blocker est une extension Chrome développée par xanderjakeq, et sa fonction principale est "Block irrelevant channels from the home page of youtube.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Channel Blocker

Téléchargez les fichiers d'extension Channel Blocker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Channel Blocker Channel Blocker
ID bdcfpamdaoifippnlppibiejaagbihon
URL Officiel https://chromewebstore.google.com/detail/channel-blocker/bdcfpamdaoifippnlppibiejaagbihon
Description Block irrelevant channels from the home page of youtube.
Taille du Fichier 10.86 KB
Nombre d'Installations 1,636
Version Actuelle 1.1.1
Dernière Mise à Jour 2022-06-21
Date de Publication 2019-09-04
Évaluation 1.80/5 Total 5 Évaluations
Développeur xanderjakeq
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/thelostcreatives/youtube_channel_blocker
Langues Prises en Charge 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"
    }
}