Word Blocker
Blocks passages on webpages that include a word the user has muted.
Cos'è Word Blocker?
Word Blocker è un'estensione di Chrome sviluppata da pyran, e la sua funzione principale è "Blocks passages on webpages that include a word the user has muted.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Word Blocker
Scarica i file di estensione Word Blocker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Word Blocker |
ID | ebbplnackfijdgaocobghipflkadnejp |
URL Ufficiale | https://chromewebstore.google.com/detail/word-blocker/ebbplnackfijdgaocobghipflkadnejp |
Descrizione | Blocks passages on webpages that include a word the user has muted. |
Dimensione del File | 33.34 KB |
Conteggio Installazioni | 852 |
Versione Corrente | 0.1.0 |
Ultimo Aggiornamento | 2021-01-18 |
Data di Pubblicazione | 2021-01-18 |
Valutazione | 3.08/5 Totale 12 Valutazioni |
Sviluppatore | pyran |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |