Word Blocker

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

Co je Word Blocker?

Word Blocker je rozšíření Chrome vyvinuté pyran, a jeho hlavní funkcí je „Blocks passages on webpages that include a word the user has muted.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Word Blocker

Stáhněte si soubory rozšíření Word Blocker ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Word Blocker Word Blocker
ID ebbplnackfijdgaocobghipflkadnejp
Oficiální URL https://chromewebstore.google.com/detail/word-blocker/ebbplnackfijdgaocobghipflkadnejp
Popis Blocks passages on webpages that include a word the user has muted.
Velikost souboru 33.34 KB
Počet instalací 852
Aktuální Verze 0.1.0
Poslední Aktualizace 2021-01-18
Datum Vydání 2021-01-18
Hodnocení 3.08/5 Celkem 12 Hodnocení
Vývojář pyran
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    ]
}