Spam filter for WhatsApp
Block annoying forwards & loudmouths in your Whatsapp group
Spam filter for WhatsApp là gì?
Spam filter for WhatsApp là một tiện ích mở rộng Chrome được phát triển bởi https://www.whatsilent.com, và tính năng chính của nó là "Block annoying forwards & loudmouths in your Whatsapp group".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Spam filter for WhatsApp
Tải xuống các tệp mở rộng Spam filter for WhatsApp dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | egidokdmejppdbdadlamgceafjobinik |
URL Chính Thức | https://chrome.google.com/webstore/detail/spam-filter-for-whatsapp/egidokdmejppdbdadlamgceafjobinik |
Mô tả | Block annoying forwards & loudmouths in your Whatsapp group |
Kích Thước Tệp | 34.38 KB |
Số Lần Cài Đặt | 85 |
Phiên Bản Hiện Tại | 1.0.0.3 |
Cập Nhật Lần Cuối | 2019-08-06 |
Ngày Phát Hành | 2019-08-06 |
Đánh Giá | 2.33/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | https://www.whatsilent.com |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.whatsilent.com |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |