Keyword Blocker

Web Extension to block unwanted videos and channels

Cos'è Keyword Blocker?

Keyword Blocker è un'estensione di Chrome sviluppata da Rik Harink, e la sua funzione principale è "Web Extension to block unwanted videos and channels".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Keyword Blocker

Scarica i file di estensione Keyword 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

                        This Chrome extension can block YouTube videos or channels from view based on keywords you can specify.
It features a very basic password protection and the block message is user-customizable.

Originally this was developed for a person who is easily scared and needed to be protected from certain YouTube searches. Because there was no easy way to do this I developed this extension.

The sourcecode is available on github at https://github.com/Meidor/keywordblocker                    

Informazioni di Base sull'Estensione

Nome Keyword Blocker Keyword Blocker
ID pbgacppomjfpheddhifkdkklddnolnpg
URL Ufficiale https://chrome.google.com/webstore/detail/keyword-blocker/pbgacppomjfpheddhifkdkklddnolnpg
Descrizione Web Extension to block unwanted videos and channels
Dimensione del File 84.9 KB
Conteggio Installazioni 9,000
Versione Corrente 2.2.1
Ultimo Aggiornamento 2020-02-04
Data di Pubblicazione 2020-02-04
Valutazione 3.25/5 Totale 99 Valutazioni
Sviluppatore Rik Harink
Tipo di Pagamento free
Sito Web dell'Estensione https://www.keywordblocker.nl
URL della Pagina di Aiuto https://github.com/Meidor/keywordblocker/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Web Extension to block unwanted videos and channels",
    "version": "2.2.1",
    "name": "Keyword Blocker",
    "manifest_version": 2,
    "icons": {
        "16": "img\/icon-16.png",
        "128": "img\/icon-128.png"
    },
    "background": {
        "scripts": [
            "background.bundle.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/icon-19.png",
            "38": "img\/icon-38.png"
        },
        "default_title": "Keyword Blocker",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "css": [
                "styles\/content_script.css"
            ],
            "js": [
                "content_script.bundle.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "contextMenus",
        "*:\/\/www.youtube.com\/*"
    ]
}