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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
***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" ] } ] } |