Chirp Silencer

Mute unwanted tweets from your timeline

Chirp Silencerとは何ですか?

Chirp Silencerはhttps://chirpsilencer.comによって開発されたChromeの拡張機能で、その主な機能は「Mute unwanted tweets from your timeline」です。

拡張機能のスクリーンショット

screenshot

Chirp Silencer拡張機能のCRXファイルをダウンロード

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
Eメール [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"
        }
    ]
}