TweetDeck Activity Muter

This extension will block certain annoying users from appearing in the Activity column in TweetDeck.

¿Qué es TweetDeck Activity Muter?

TweetDeck Activity Muter es una extensión de Chrome desarrollada por outime, y su función principal es "This extension will block certain annoying users from appearing in the Activity column in TweetDeck.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión TweetDeck Activity Muter

Descarga archivos de extensión TweetDeck Activity Muter en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        *** 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                    

Información Básica de la Extensión

Nombre TweetDeck Activity Muter TweetDeck Activity Muter
ID miaoojdjohgmgkibpkidjcmokjcbanle
URL Oficial https://chrome.google.com/webstore/detail/tweetdeck-activity-muter/miaoojdjohgmgkibpkidjcmokjcbanle
Descripción This extension will block certain annoying users from appearing in the Activity column in TweetDeck.
Tamaño del Archivo 24.65 KB
Cantidad de Instalaciones 67
Versión Actual 1.6.3
Última Actualización 2021-03-13
Fecha de Publicación 2015-11-14
Calificación 5.00/5 Total de 4 Calificaciones
Desarrollador outime
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/outime/tweetdeck-activity-muter
URL de la Página de Ayuda https://github.com/outime/tweetdeck-activity-muter/issues
Idiomas Soportados 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\/*"
    ]
}