Word Blocker
Blocks passages on webpages that include a word the user has muted.
Wat is Word Blocker?
Word Blocker is een Chrome-extensie ontwikkeld door pyran, en de belangrijkste functie is "Blocks passages on webpages that include a word the user has muted.".
Extensie Screenshots
Download het CRX-bestand van de extensie Word Blocker
Download Word Blocker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | ebbplnackfijdgaocobghipflkadnejp |
Officiële URL | https://chromewebstore.google.com/detail/word-blocker/ebbplnackfijdgaocobghipflkadnejp |
Beschrijving | Blocks passages on webpages that include a word the user has muted. |
Bestandsgrootte | 33.34 KB |
Aantal Installaties | 852 |
Huidige Versie | 0.1.0 |
Laatst Bijgewerkt | 2021-01-18 |
Publicatiedatum | 2021-01-18 |
Beoordeling | 3.08/5 Totaal 12 Beoordelingen |
Ontwikkelaar | pyran |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |