Chirp Silencer

Mute unwanted tweets from your timeline

Co je Chirp Silencer?

Chirp Silencer je rozšíření Chrome vyvinuté https://chirpsilencer.com, a jeho hlavní funkcí je „Mute unwanted tweets from your timeline“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Chirp Silencer

Stáhněte si soubory rozšíření Chirp Silencer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Chirp Silencer Chirp Silencer
ID hfmapnknalalilhipleaejemjckikadp
Oficiální URL https://chromewebstore.google.com/detail/chirp-silencer/hfmapnknalalilhipleaejemjckikadp
Popis Mute unwanted tweets from your timeline
Velikost souboru 15.03 KB
Počet instalací 37
Aktuální Verze 0.1
Poslední Aktualizace 2023-08-22
Datum Vydání 2023-08-22
Vývojář https://chirpsilencer.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://www.chirpsilencer.com
URL Stránky Nápovědy https://www.chirpsilencer.com
Podporované Jazyky 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"
        }
    ]
}