Channel Blocker

Block irrelevant channels from the home page of youtube.

What is Channel Blocker?

Channel Blocker is a Chrome extension developed by xanderjakeq, and its main feature is "Block irrelevant channels from the home page of youtube.".

Extension Screenshots

screenshot

Download Channel Blocker Extension CRX File

Download Channel Blocker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Channel Blocker Channel Blocker
ID bdcfpamdaoifippnlppibiejaagbihon
Official URL https://chromewebstore.google.com/detail/channel-blocker/bdcfpamdaoifippnlppibiejaagbihon
Description Block irrelevant channels from the home page of youtube.
File Size 10.86 KB
Installation Count 1,636
Current Version 1.1.1
Last Updated 2022-06-21
Publish Date 2019-09-04
Rating 1.80/5 Total 5 Ratings
Developer xanderjakeq
Email [email protected]
Payment Type free
Extension Website https://github.com/thelostcreatives/youtube_channel_blocker
Supported Languages 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"
    }
}