Word Blocker

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

What is Word Blocker?

Word Blocker is a Chrome extension developed by pyran, and its main feature is "Blocks passages on webpages that include a word the user has muted.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Word Blocker Extension CRX File

Download Word Blocker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Word Blocker Word Blocker
ID ebbplnackfijdgaocobghipflkadnejp
Official URL https://chromewebstore.google.com/detail/word-blocker/ebbplnackfijdgaocobghipflkadnejp
Description Blocks passages on webpages that include a word the user has muted.
File Size 33.34 KB
Installation Count 852
Current Version 0.1.0
Last Updated 2021-01-18
Publish Date 2021-01-18
Rating 3.08/5 Total 12 Ratings
Developer pyran
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}