Word Blocker

Blocks passages on webpages that include a word the user has muted.

Qu'est-ce que Word Blocker ?

Word Blocker est une extension Chrome développée par pyran, et sa fonction principale est "Blocks passages on webpages that include a word the user has muted.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

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

Téléchargez les fichiers d'extension Word 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

                        Enter words in the popup, and it will be censored with asterisks. This extension will soon be able to be used for blocking triggers or avoiding spoilers.                    

Informations de Base sur l'Extension

Nom Word Blocker Word Blocker
ID ebbplnackfijdgaocobghipflkadnejp
URL Officiel https://chromewebstore.google.com/detail/word-blocker/ebbplnackfijdgaocobghipflkadnejp
Description Blocks passages on webpages that include a word the user has muted.
Taille du Fichier 33.34 KB
Nombre d'Installations 852
Version Actuelle 0.1.0
Dernière Mise à Jour 2021-01-18
Date de Publication 2021-01-18
Évaluation 3.08/5 Total 12 Évaluations
Développeur pyran
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Word Blocker",
    "description": "Blocks passages on webpages that include a word the user has muted.",
    "version": "0.1.0",
    "manifest_version": 2,
    "icons": {
        "128": ".\/monkey_icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "options_page": ".\/options.html",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ]
}