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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

TweetDeck Activity Muter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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                    

확장 프로그램 기본 정보

이름 TweetDeck Activity Muter 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\/*"
    ]
}