Chirp Silencer

Mute unwanted tweets from your timeline

Τι είναι το Chirp Silencer;

Το Chirp Silencer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://chirpsilencer.com, και η κύρια λειτουργία του είναι "Mute unwanted tweets from your timeline".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Chirp Silencer

Λήψη αρχείων επέκτασης Chirp Silencer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Chirp Silencer Chirp Silencer
ID hfmapnknalalilhipleaejemjckikadp
Επίσημο URL https://chromewebstore.google.com/detail/chirp-silencer/hfmapnknalalilhipleaejemjckikadp
Περιγραφή Mute unwanted tweets from your timeline
Μέγεθος Αρχείου 15.03 KB
Αριθμός Εγκαταστάσεων 37
Τρέχουσα Έκδοση 0.1
Τελευταία Ενημέρωση 2023-08-22
Ημερομηνία Δημοσίευσης 2023-08-22
Προγραμματιστής https://chirpsilencer.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.chirpsilencer.com
Διεύθυνση URL της Σελίδας Βοήθειας https://www.chirpsilencer.com
Υποστηριζόμενες Γλώσσες 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"
        }
    ]
}