Youtube Title Blacklist

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

Hvad er Youtube Title Blacklist?

Youtube Title Blacklist er en Chrome-udvidelse udviklet af http://creativebuilds.io, og dens hovedfunktion er "Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Youtube Title Blacklist-udvidelses-CRX-fil

Download Youtube Title Blacklist-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Youtube Title Blacklist Youtube Title Blacklist
ID gcmgilkgahoblmnolplncmmkhmmbddfn
Officiel URL https://chrome.google.com/webstore/detail/youtube-title-blacklist/gcmgilkgahoblmnolplncmmkhmmbddfn
Beskrivelse Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.
Filstørrelse 296 KB
Antal Installationer 423
Nuværende Version 1.0.2
Senest Opdateret 2020-12-12
Udgivelsesdato 2020-12-09
Bedømmelse 4.83/5 Samlet 6 Bedømmelser
Udvikler http://creativebuilds.io
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    ]
}