Spam filter for WhatsApp
Block annoying forwards & loudmouths in your Whatsapp group
Qu'est-ce que Spam filter for WhatsApp ?
Spam filter for WhatsApp est une extension Chrome développée par https://www.whatsilent.com, et sa fonction principale est "Block annoying forwards & loudmouths in your Whatsapp group".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Spam filter for WhatsApp
Téléchargez les fichiers d'extension Spam filter for WhatsApp au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | egidokdmejppdbdadlamgceafjobinik |
URL Officiel | https://chrome.google.com/webstore/detail/spam-filter-for-whatsapp/egidokdmejppdbdadlamgceafjobinik |
Description | Block annoying forwards & loudmouths in your Whatsapp group |
Taille du Fichier | 34.38 KB |
Nombre d'Installations | 85 |
Version Actuelle | 1.0.0.3 |
Dernière Mise à Jour | 2019-08-06 |
Date de Publication | 2019-08-06 |
Évaluation | 2.33/5 Total 3 Évaluations |
Développeur | https://www.whatsilent.com |
Type de Paiement | free |
Site Web de l'Extension | https://www.whatsilent.com |
Langues Prises en Charge | 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" ] } |