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.

Cos'è Youtube Video Blocker?

Youtube Video Blocker è un'estensione di Chrome sviluppata da bmoses1124, e la sua funzione principale è "Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Youtube Video Blocker

Scarica i file di estensione Youtube Video Blocker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Youtube Video Blocker Youtube Video Blocker
ID cbkaomkmifobpbdkhhiincnigngeckfc
URL Ufficiale https://chrome.google.com/webstore/detail/youtube-video-blocker/cbkaomkmifobpbdkhhiincnigngeckfc
Descrizione Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.
Dimensione del File 6.02 KB
Conteggio Installazioni 555
Versione Corrente 0.1
Ultimo Aggiornamento 2020-12-23
Data di Pubblicazione 2020-12-23
Valutazione 1.00/5 Totale 3 Valutazioni
Sviluppatore bmoses1124
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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
}