Youtube Title Blacklist

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

O que é Youtube Title Blacklist?

Youtube Title Blacklist é uma extensão do Chrome desenvolvida por http://creativebuilds.io, e sua principal característica é "Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Youtube Title Blacklist

Baixe arquivos de extensão Youtube Title Blacklist no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Youtube Title Blacklist Youtube Title Blacklist
ID gcmgilkgahoblmnolplncmmkhmmbddfn
URL Oficial https://chrome.google.com/webstore/detail/youtube-title-blacklist/gcmgilkgahoblmnolplncmmkhmmbddfn
Descrição Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.
Tamanho do Arquivo 296 KB
Contagem de Instalações 423
Versão Atual 1.0.2
Última Atualização 2020-12-12
Data de Publicação 2020-12-09
Classificação 4.83/5 Total de 6 Avaliações
Desenvolvedor http://creativebuilds.io
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}