Word Blocker

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

Co to jest Word Blocker?

Word Blocker to rozszerzenie Chrome opracowane przez pyran, a jego główną funkcją jest „Blocks passages on webpages that include a word the user has muted.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Word Blocker

Pobierz pliki rozszerzeń Word Blocker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Word Blocker Word Blocker
ID ebbplnackfijdgaocobghipflkadnejp
Oficjalny URL https://chromewebstore.google.com/detail/word-blocker/ebbplnackfijdgaocobghipflkadnejp
Opis Blocks passages on webpages that include a word the user has muted.
Rozmiar pliku 33.34 KB
Liczba instalacji 852
Aktualna Wersja 0.1.0
Ostatnia Aktualizacja 2021-01-18
Data Publikacji 2021-01-18
Ocena 3.08/5 Łącznie 12 Oceny
Deweloper pyran
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}