Chirp Silencer

Mute unwanted tweets from your timeline

Что такое Chirp Silencer?

Chirp Silencer - это расширение Chrome, разработанное https://chirpsilencer.com, и его основная функция - "Mute unwanted tweets from your timeline".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Chirp Silencer

Скачайте файлы расширений 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"
        }
    ]
}