Youtube Title Blacklist

Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.

Was ist Youtube Title Blacklist?

Youtube Title Blacklist ist eine Chrome-Erweiterung, die von http://creativebuilds.io entwickelt wurde, und ihr Hauptmerkmal ist "Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Youtube Title Blacklist-Erweiterungs-CRX-Datei herunterladen

Laden Sie Youtube Title Blacklist-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        A simple extension designed to block videos from showing up in your home feed on YouTube that contain certain keywords that you set. Useful for hiding content you don't want kids to be seeing.                    

Grundlegende Informationen zur Erweiterung

Name Youtube Title Blacklist Youtube Title Blacklist
ID gcmgilkgahoblmnolplncmmkhmmbddfn
Offizielle URL https://chrome.google.com/webstore/detail/youtube-title-blacklist/gcmgilkgahoblmnolplncmmkhmmbddfn
Beschreibung Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.
Dateigröße 296 KB
Installationsanzahl 423
Aktuelle Version 1.0.2
Letztes Update 2020-12-12
Veröffentlichungsdatum 2020-12-09
Bewertung 4.83/5 Insgesamt 6 Bewertungen
Entwickler http://creativebuilds.io
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Title Blacklist",
    "version": "1.0.2",
    "description": "Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.",
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "24": "assets\/icons\/icon24.png",
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "assets\/icons\/icon16.png",
        "default_popup": "popup\/index.html",
        "default_title": "Youtube Title Blacklist - Settings"
    },
    "content_scripts": [
        {
            "js": [
                "content\/index.js"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background\/index.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "web_accessible_resources": [
        "assets\/icons\/*.png"
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}