Youtube Video Blocker

Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.

What is Youtube Video Blocker?

Youtube Video Blocker is a Chrome extension developed by bmoses1124, and its main feature is "Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.".

Extension Screenshots

screenshot

Download Youtube Video Blocker Extension CRX File

Download Youtube Video 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

                        An extension to block Youtube videos with undesired keywords. Enter the keywords into a settings page, and videos with those keywords in their titles will not appear.                    

Extension Basic Information

Name Youtube Video Blocker Youtube Video Blocker
ID cbkaomkmifobpbdkhhiincnigngeckfc
Official URL https://chrome.google.com/webstore/detail/youtube-video-blocker/cbkaomkmifobpbdkhhiincnigngeckfc
Description Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.
File Size 6.02 KB
Installation Count 555
Current Version 0.1
Last Updated 2020-12-23
Publish Date 2020-12-23
Rating 1.00/5 Total 3 Ratings
Developer bmoses1124
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Video Blocker",
    "version": "0.1",
    "description": "Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "block_youtube_vids.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "manifest_version": 2
}