Twitter Mute Chain
Mutes all users on a following/followers page.
Twitter Mute Chain là gì?
Twitter Mute Chain là một tiện ích mở rộng Chrome được phát triển bởi https://tdwiser.github.io/twitter-mute-chain, và tính năng chính của nó là "Mutes all users on a following/followers page.".
Tải xuống tệp CRX của tiện ích mở rộng Twitter Mute Chain
Tải xuống các tệp mở rộng Twitter Mute Chain 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
***Note that Twitter limits the rate of muting to (on average) 1 account per 5 seconds, so this extension is slow (but automated).*** This is a fork of the Twitter Block Chain extension (https://github.com/satsukitv/twitter-block-chain) that mutes instead of blocks. The idea is to mitigate dog-piling harassment on Twitter by using a silent response (muting) rather than a visible response (blocking). There is also a feature to convert all of your previous blocks to mutes. Navigate to your 'Blocked Accounts' page and run Block->Mute Chain.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | lfojnlpiefgcionjnjjmlpdiccohpejn |
URL Chính Thức | https://chrome.google.com/webstore/detail/twitter-mute-chain/lfojnlpiefgcionjnjjmlpdiccohpejn |
Mô tả | Mutes all users on a following/followers page. |
Kích Thước Tệp | 273 KB |
Số Lần Cài Đặt | 518 |
Phiên Bản Hiện Tại | 0.2 |
Cập Nhật Lần Cuối | 2018-02-22 |
Ngày Phát Hành | 2018-02-22 |
Đánh Giá | 1.22/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | https://tdwiser.github.io/twitter-mute-chain |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/tdwiser/twitter-mute-chain/ |
URL Trang Trợ Giúp | https://github.com/tdwiser/twitter-mute-chain/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter Mute Chain", "description": "Mutes all users on a following\/followers page.", "version": "0.2", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": "images\/icon.png", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "storage", "activeTab", "webRequest", "webRequestBlocking", "*:\/\/*.twimg.com\/", "https:\/\/twitter.com\/" ], "options_page": "options.html", "content_scripts": [ { "matches": [ "https:\/\/www.twitter.com\/*", "https:\/\/twitter.com\/*" ], "css": [ "css\/content.css" ], "js": [ "js\/Queue.js", "js\/ExtensionStorage.js", "bower_components\/jquery\/dist\/jquery.min.js", "js\/blockchain.js" ] } ] } |