Spam filter for WhatsApp
Block annoying forwards & loudmouths in your Whatsapp group
O que é Spam filter for WhatsApp?
Spam filter for WhatsApp é uma extensão do Chrome desenvolvida por https://www.whatsilent.com, e sua principal característica é "Block annoying forwards & loudmouths in your Whatsapp group".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Spam filter for WhatsApp
Baixe arquivos de extensão Spam filter for WhatsApp 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
Whatsilent is a spam filter for busy people who do not have the time to read silly forwards and loudmouths in their WhatsApp group. Instead of blocking them altogether, mute them with this chrome extension. Features 1. Mute the loudmouths in your WhatsApp group: Some people in your group might flood the group with too many messages and spoil your experience with other members. Now, you can mute those people alone in the group. 2. Block annoying forwards from your WhatsApp contacts: If you don't have time to read silly forwards from your Whatsapp contacts, you can mute them. Instead of rudely blocking them altogether, silence their forwards alone with this plugin.
Informações Básicas da Extensão
Nome | |
ID | egidokdmejppdbdadlamgceafjobinik |
URL Oficial | https://chrome.google.com/webstore/detail/spam-filter-for-whatsapp/egidokdmejppdbdadlamgceafjobinik |
Descrição | Block annoying forwards & loudmouths in your Whatsapp group |
Tamanho do Arquivo | 34.38 KB |
Contagem de Instalações | 85 |
Versão Atual | 1.0.0.3 |
Última Atualização | 2019-08-06 |
Data de Publicação | 2019-08-06 |
Classificação | 2.33/5 Total de 3 Avaliações |
Desenvolvedor | https://www.whatsilent.com |
Tipo de Pagamento | free |
Site da Extensão | https://www.whatsilent.com |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Spam filter for WhatsApp", "short_name": "Whatsilent", "manifest_version": 2, "version": "1.0.0.3", "description": "Block annoying forwards & loudmouths in your Whatsapp group", "icons": { "16": "images\/logo16.png", "32": "images\/logo32.png", "48": "images\/logo48.png", "128": "images\/logo128.png" }, "browser_action": { "default_title": "Launch WhatsApp", "default_icon": "images\/logo16.png" }, "content_scripts": [ { "matches": [ "*:\/\/web.whatsapp.com\/*" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "options_page": "options.html", "permissions": [ "tabs", "identity", "identity.email" ] } |