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開發的Chrome擴展程式,該擴展的主要功能是“This extension will block certain annoying users from appearing in the Activity column in TweetDeck.”。
擴展截圖
下載TweetDeck Activity Muter擴展crx文件
下載TweetDeck Activity Muter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
*** 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 |
官方網址 | 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\/*" ] } |