Blue Check Hider

Identify and hide Twitter Blue users

Что такое Blue Check Hider?

Blue Check Hider - это расширение Chrome, разработанное https://gsajith.com, и его основная функция - "Identify and hide Twitter Blue users".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension will hide any users with a verified checkmark next to their name in the Twitter web UI.

You should install it if you want a peaceful browsing experience free of brands, ads, and those who pay $8.                    

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

Название Blue Check Hider Blue Check Hider
ID jhkoihkndkemdikaiafkiolgidghjfkl
Официальный URL https://chromewebstore.google.com/detail/blue-check-hider/jhkoihkndkemdikaiafkiolgidghjfkl
Описание Identify and hide Twitter Blue users
Размер файла 497 KB
Количество установок 611
Текущая Версия 1.3
Последнее Обновление 2023-05-05
Дата публикации 2023-04-21
Рейтинг 4.25/5 Всего 8 оценок
Разработчик https://gsajith.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/gsajith/blue-check-hider
URL страницы помощи https://github.com/gsajith/blue-check-hider
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Blue Check Hider",
    "version": "1.3",
    "description": "Identify and hide Twitter Blue users",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "js": [
                ".\/static\/js\/content.js"
            ],
            "run_at": "document_end",
            "matches": [
                "https:\/\/*.twitter.com\/*",
                "http:\/\/*.twitter.com\/*",
                "https:\/\/twitter.com\/*",
                "http:\/\/twitter.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": ".\/static\/js\/background.js",
        "type": "module"
    },
    "action": {
        "default_popup": "index.html",
        "default_icon": {
            "16": "icon-16.png",
            "32": "icon-32.png",
            "48": "icon-48.png",
            "128": "icon-128.png"
        },
        "default_title": "Blue Check Hider"
    }
}