Word Blocker
Blocks passages on webpages that include a word the user has muted.
O que é Word Blocker?
Word Blocker é uma extensão do Chrome desenvolvida por pyran, e sua principal característica é "Blocks passages on webpages that include a word the user has muted.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Word Blocker
Baixe arquivos de extensão Word Blocker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Word Blocker |
ID | ebbplnackfijdgaocobghipflkadnejp |
URL Oficial | https://chromewebstore.google.com/detail/word-blocker/ebbplnackfijdgaocobghipflkadnejp |
Descrição | Blocks passages on webpages that include a word the user has muted. |
Tamanho do Arquivo | 33.34 KB |
Contagem de Instalações | 852 |
Versão Atual | 0.1.0 |
Última Atualização | 2021-01-18 |
Data de Publicação | 2021-01-18 |
Classificação | 3.08/5 Total de 12 Avaliações |
Desenvolvedor | pyran |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } |