YouTube Blocker

Block unwanted YouTube channels.

What is YouTube Blocker?

YouTube Blocker is a Chrome extension developed by Przemysław Tyczyński, and its main feature is "Block unwanted YouTube channels.".

Extension Screenshots

screenshot
screenshot
screenshot

Download YouTube Blocker Extension CRX File

Download YouTube 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

                        YouTube Blocker is an extension that aims to make your life easier, and by all means less stressful. 
We know that the YouTube feed can be troublesome sometimes, to say the least. 
For that reason, we put forward a much needed solution to aforementioned problem.

Hide unwanted content now.                    

Extension Basic Information

Name YouTube Blocker YouTube Blocker
ID okgepglpkhgfhjonfceifgibiobjnodg
Official URL https://chrome.google.com/webstore/detail/youtube-blocker/okgepglpkhgfhjonfceifgibiobjnodg
Description Block unwanted YouTube channels.
File Size 96.3 KB
Installation Count 1,036
Current Version 1.0.0
Last Updated 2020-04-21
Publish Date 2020-04-21
Rating 5.00/5 Total 5 Ratings
Developer Przemysław Tyczyński
Payment Type free
Extension Website https://youtube-blocker.tyczynski.dev
Help Page URL https://youtube-blocker.tyczynski.dev
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Blocker",
    "description": "Block unwanted YouTube channels.",
    "version": "1.0.0",
    "browser_action": {
        "default_title": "YouTube Blocker",
        "default_popup": "popup.html",
        "default_icon": {
            "16": ".\/icons\/icon-16.png",
            "48": ".\/icons\/icon-48.png",
            "128": ".\/icons\/icon-128.png"
        }
    },
    "icons": {
        "16": ".\/icons\/icon-16.png",
        "48": ".\/icons\/icon-48.png",
        "128": ".\/icons\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true,
        "chrome_style": true
    },
    "permissions": [
        "storage"
    ]
}