Chirp Silencer

Mute unwanted tweets from your timeline

What is Chirp Silencer?

Chirp Silencer is a Chrome extension developed by https://chirpsilencer.com, and its main feature is "Mute unwanted tweets from your timeline".

Extension Screenshots

screenshot

Download Chirp Silencer Extension CRX File

Download Chirp Silencer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Chirp Silencer Chirp Silencer
ID hfmapnknalalilhipleaejemjckikadp
Official URL https://chromewebstore.google.com/detail/chirp-silencer/hfmapnknalalilhipleaejemjckikadp
Description Mute unwanted tweets from your timeline
File Size 15.03 KB
Installation Count 37
Current Version 0.1
Last Updated 2023-08-22
Publish Date 2023-08-22
Developer https://chirpsilencer.com
Email [email protected]
Payment Type free
Extension Website https://www.chirpsilencer.com
Help Page URL https://www.chirpsilencer.com
Supported Languages 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"
        }
    ]
}