Word Blocker
Blocks passages on webpages that include a word the user has muted.
Was ist Word Blocker?
Word Blocker ist eine Chrome-Erweiterung, die von pyran entwickelt wurde, und ihr Hauptmerkmal ist "Blocks passages on webpages that include a word the user has muted.".
Erweiterungsscreenshots
Word Blocker-Erweiterungs-CRX-Datei herunterladen
Laden Sie Word Blocker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Word Blocker |
ID | ebbplnackfijdgaocobghipflkadnejp |
Offizielle URL | https://chromewebstore.google.com/detail/word-blocker/ebbplnackfijdgaocobghipflkadnejp |
Beschreibung | Blocks passages on webpages that include a word the user has muted. |
Dateigröße | 33.34 KB |
Installationsanzahl | 852 |
Aktuelle Version | 0.1.0 |
Letztes Update | 2021-01-18 |
Veröffentlichungsdatum | 2021-01-18 |
Bewertung | 3.08/5 Insgesamt 12 Bewertungen |
Entwickler | pyran |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |