Twitter Bot Hider

Hides twitter bots from your timeline.

Что такое Twitter Bot Hider?

Twitter Bot Hider - это расширение Chrome, разработанное Ebu, и его основная функция - "Hides twitter bots from your timeline.".

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

screenshot

Скачать файл CRX расширения Twitter Bot Hider

Скачайте файлы расширений Twitter Bot Hider в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Twitter Bot Hider Chrome Extension helps to hide spam/bot tweets under tweets' replies.

The source code can be found here: https://github.com/EbuOgden/TwitterBotHider                    

Основная информация о расширении

Название Twitter Bot Hider Twitter Bot Hider
ID efpmoenhggjbiaeomapapohigijbobgb
Официальный URL https://chromewebstore.google.com/detail/twitter-bot-hider/efpmoenhggjbiaeomapapohigijbobgb
Описание Hides twitter bots from your timeline.
Размер файла 40.87 KB
Количество установок 33
Текущая Версия 0.1.1
Последнее Обновление 2022-10-31
Дата публикации 2022-10-31
Рейтинг 5.00/5 Всего 3 оценок
Разработчик Ebu
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Bot Hider",
    "version": "0.1.1",
    "description": "Hides twitter bots from your timeline.",
    "permissions": [
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "https:\/\/*.githubusercontent.com\/*"
            ],
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "assets\/ext-icon.png",
            "24": "assets\/ext-icon.png",
            "32": "assets\/ext-icon.png"
        },
        "default_title": "Twitter Bot Hider",
        "default_popup": "popup.html"
    },
    "manifest_version": 3
}