TweetDeck Activity Muter
This extension will block certain annoying users from appearing in the Activity column in TweetDeck.
TweetDeck Activity Muter क्या है?
TweetDeck Activity Muter outime द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will block certain annoying users from appearing in the Activity column in TweetDeck."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में TweetDeck Activity Muter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
*** UPDATED MARCH 2021 *** Twitter power users often use TweetDeck and follow a good bunch of people. While we're interested in people's tweets, they may be filling the Activity column with useless content such as nonsense favs (nowadays likes/hearts) or massive follows. Without this extension you'd need to either unfollow the person who's executing the actions (follows, likes, etc) or block/mute the receiver of these actions one by one. Since that's basically unfeasible I wrote this extension so you can mute these individuals' activity while still being able to read their tweets. INSTRUCTIONS: As soon as you install it, open TweetDeck and you'll find a new icon located in the address bar. Click it and add the usernames that you want to mute from the Activity column. CODE/BUGS: https://github.com/outime/tweetdeck-activity-muter
एक्सटेंशन की मूल जानकारी
नाम | |
ID | miaoojdjohgmgkibpkidjcmokjcbanle |
आधिकारिक URL | https://chrome.google.com/webstore/detail/tweetdeck-activity-muter/miaoojdjohgmgkibpkidjcmokjcbanle |
विवरण | This extension will block certain annoying users from appearing in the Activity column in TweetDeck. |
फ़ाइल का आकार | 24.65 KB |
स्थापना संख्या | 67 |
वर्तमान संस्करण | 1.6.3 |
अंतिम अपडेट | 2021-03-13 |
प्रकाशन तिथि | 2015-11-14 |
रेटिंग | 5.00/5 कुल 4 रेटिंग्स |
डेवलपर | outime |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/outime/tweetdeck-activity-muter |
सहायता पृष्ठ URL | https://github.com/outime/tweetdeck-activity-muter/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "TweetDeck Activity Muter", "short_name": "TAM", "description": "This extension will block certain annoying users from appearing in the Activity column in TweetDeck.", "version": "1.6.3", "author": "outime", "page_action": { "default_icon": "icons\/page_action_icon.png", "default_title": "TweetDeck Activity Muter", "default_popup": "popup.html" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/tweetdeck.twitter.com\/*" ], "js": [ "scripts\/script.js" ], "run_at": "document_start" } ], "permissions": [ "tabs", "storage", "https:\/\/tweetdeck.twitter.com\/*" ] } |