Chirp Silencer

Mute unwanted tweets from your timeline

Hvad er Chirp Silencer?

Chirp Silencer er en Chrome-udvidelse udviklet af https://chirpsilencer.com, og dens hovedfunktion er "Mute unwanted tweets from your timeline".

Udvidelsesskærmbilleder

screenshot

Download Chirp Silencer-udvidelses-CRX-fil

Download Chirp Silencer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Chirp Silencer Chirp Silencer
ID hfmapnknalalilhipleaejemjckikadp
Officiel URL https://chromewebstore.google.com/detail/chirp-silencer/hfmapnknalalilhipleaejemjckikadp
Beskrivelse Mute unwanted tweets from your timeline
Filstørrelse 15.03 KB
Antal Installationer 37
Nuværende Version 0.1
Senest Opdateret 2023-08-22
Udgivelsesdato 2023-08-22
Udvikler https://chirpsilencer.com
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://www.chirpsilencer.com
Hjælpeside-URL https://www.chirpsilencer.com
Understøttede Sprog 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"
        }
    ]
}