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
官方網址 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"
        }
    ]
}