Chirp Silencer

Mute unwanted tweets from your timeline

¿Qué es Chirp Silencer?

Chirp Silencer es una extensión de Chrome desarrollada por https://chirpsilencer.com, y su función principal es "Mute unwanted tweets from your timeline".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Chirp Silencer

Descarga archivos de extensión Chirp Silencer 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

                        Tired of all the noise on Twitter / X? So are we. 
With our browser extension, you can easily add dozens of words to your mute list and finally have a readable news feed without the fuss.

We do not collect or store any personal information. Even your lists are yours. Want to store them on Github Gist? No problem! Prefer Pastebin? That's fine too.

As long as your lists follow the required syntax and are available, we'll do the rest.                    

Información Básica de la Extensión

Nombre Chirp Silencer Chirp Silencer
ID hfmapnknalalilhipleaejemjckikadp
URL Oficial https://chromewebstore.google.com/detail/chirp-silencer/hfmapnknalalilhipleaejemjckikadp
Descripción Mute unwanted tweets from your timeline
Tamaño del Archivo 15.03 KB
Cantidad de Instalaciones 37
Versión Actual 0.1
Última Actualización 2023-08-22
Fecha de Publicación 2023-08-22
Desarrollador https://chirpsilencer.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.chirpsilencer.com
URL de la Página de Ayuda https://www.chirpsilencer.com
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chirp Silencer",
    "description": "Mute unwanted tweets from your timeline",
    "version": "0.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "\/scripts\/background.js",
        "type": "module"
    },
    "action": {
        "default_icon": "\/images\/logo.png"
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "icons": {
        "16": "\/images\/logo.png",
        "48": "\/images\/logo.png",
        "128": "\/images\/logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/settings\/add_muted_keyword",
                "https:\/\/*.x.com\/settings\/add_muted_keyword"
            ],
            "js": [
                "\/scripts\/content.js"
            ],
            "css": [
                "\/styles\/content.css"
            ],
            "run_at": "document_idle"
        }
    ]
}