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.

Wat is Youtube Video Blocker?

Youtube Video Blocker is een Chrome-extensie ontwikkeld door bmoses1124, en de belangrijkste functie is "Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Youtube Video Blocker

Download Youtube Video Blocker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Youtube Video Blocker Youtube Video Blocker
ID cbkaomkmifobpbdkhhiincnigngeckfc
Officiële URL https://chrome.google.com/webstore/detail/youtube-video-blocker/cbkaomkmifobpbdkhhiincnigngeckfc
Beschrijving Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.
Bestandsgrootte 6.02 KB
Aantal Installaties 555
Huidige Versie 0.1
Laatst Bijgewerkt 2020-12-23
Publicatiedatum 2020-12-23
Beoordeling 1.00/5 Totaal 3 Beoordelingen
Ontwikkelaar bmoses1124
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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
}