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
电子邮箱 [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"
        }
    ]
}