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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    ]
}