Twitter Mute Chain
Mutes all users on a following/followers page.
什么是Twitter Mute Chain?
Twitter Mute Chain是由https://tdwiser.github.io/twitter-mute-chain开发的Chrome扩展程序,该扩展的主要功能是“Mutes all users on a following/followers page.”。
下载Twitter Mute Chain扩展crx文件
下载Twitter Mute Chain扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
***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. 扩展基本信息
| 名称 | |
| ID | lfojnlpiefgcionjnjjmlpdiccohpejn |
| 官方URL | https://chrome.google.com/webstore/detail/twitter-mute-chain/lfojnlpiefgcionjnjjmlpdiccohpejn |
| 简介 | Mutes all users on a following/followers page. |
| 文件大小 | 273 KB |
| 安装次数 | 518 |
| 当前版本 | 0.2 |
| 更新时间 | 2018-02-22 |
| 上架时间 | 2018-02-22 |
| 评分 | 1.22/5 共9次评分 |
| 开发者 | https://tdwiser.github.io/twitter-mute-chain |
| 付费类型 | free |
| 扩展官网 | https://github.com/tdwiser/twitter-mute-chain/ |
| 帮助页面URL | https://github.com/tdwiser/twitter-mute-chain/issues |
| 支持的语言 | 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"
]
}
]
} | |