Keyword Blocker

Web Extension to block unwanted videos and channels

Qu'est-ce que Keyword Blocker ?

Keyword Blocker est une extension Chrome développée par Rik Harink, et sa fonction principale est "Web Extension to block unwanted videos and channels".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Keyword Blocker

Téléchargez les fichiers d'extension Keyword Blocker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Keyword Blocker Keyword Blocker
ID pbgacppomjfpheddhifkdkklddnolnpg
URL Officiel https://chrome.google.com/webstore/detail/keyword-blocker/pbgacppomjfpheddhifkdkklddnolnpg
Description Web Extension to block unwanted videos and channels
Taille du Fichier 84.9 KB
Nombre d'Installations 9,000
Version Actuelle 2.2.1
Dernière Mise à Jour 2020-02-04
Date de Publication 2020-02-04
Évaluation 3.25/5 Total 99 Évaluations
Développeur Rik Harink
Type de Paiement free
Site Web de l'Extension https://www.keywordblocker.nl
URL de la Page d'Aide https://github.com/Meidor/keywordblocker/issues
Langues Prises en Charge 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\/*"
    ]
}