Spam filter for WhatsApp
Block annoying forwards & loudmouths in your Whatsapp group
Was ist Spam filter for WhatsApp?
Spam filter for WhatsApp ist eine Chrome-Erweiterung, die von https://www.whatsilent.com entwickelt wurde, und ihr Hauptmerkmal ist "Block annoying forwards & loudmouths in your Whatsapp group".
Erweiterungsscreenshots
Spam filter for WhatsApp-Erweiterungs-CRX-Datei herunterladen
Laden Sie Spam filter for WhatsApp-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | egidokdmejppdbdadlamgceafjobinik |
Offizielle URL | https://chrome.google.com/webstore/detail/spam-filter-for-whatsapp/egidokdmejppdbdadlamgceafjobinik |
Beschreibung | Block annoying forwards & loudmouths in your Whatsapp group |
Dateigröße | 34.38 KB |
Installationsanzahl | 85 |
Aktuelle Version | 1.0.0.3 |
Letztes Update | 2019-08-06 |
Veröffentlichungsdatum | 2019-08-06 |
Bewertung | 2.33/5 Insgesamt 3 Bewertungen |
Entwickler | https://www.whatsilent.com |
Zahlungsart | free |
Erweiterungswebsite | https://www.whatsilent.com |
Unterstützte Sprachen | 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" ] } |