Twitter Mute Chain
Mutes all users on a following/followers page.
Twitter Mute Chain क्या है?
Twitter Mute Chain https://tdwiser.github.io/twitter-mute-chain द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Mutes all users on a following/followers page."।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Twitter Mute Chain एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } ] } |