Twitter Mute Chain
Mutes all users on a following/followers page.
Vad är Twitter Mute Chain?
Twitter Mute Chain är en Chrome-tillägg utvecklad av https://tdwiser.github.io/twitter-mute-chain, och dess huvudfunktion är "Mutes all users on a following/followers page.".
Ladda ner Twitter Mute Chain-förlängningens CRX-fil
Ladda ner Twitter Mute Chain-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
***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. Grundläggande Information om Tillägg
| Namn | |
| ID | lfojnlpiefgcionjnjjmlpdiccohpejn |
| Officiell webbadress | https://chrome.google.com/webstore/detail/twitter-mute-chain/lfojnlpiefgcionjnjjmlpdiccohpejn |
| Beskrivning | Mutes all users on a following/followers page. |
| Filstorlek | 273 KB |
| Antal Installationer | 518 |
| Aktuell Version | 0.2 |
| Senast Uppdaterad | 2018-02-22 |
| Publiceringsdatum | 2018-02-22 |
| Betyg | 1.22/5 Totalt 9 Betyg |
| Utvecklare | https://tdwiser.github.io/twitter-mute-chain |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/tdwiser/twitter-mute-chain/ |
| Hjälpsida URL | https://github.com/tdwiser/twitter-mute-chain/issues |
| Stödda Språk | 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"
]
}
]
} | |