Hide Verified Twitter Users

A Chrome extension that hides verified Twitter users' posts.

Что такое Hide Verified Twitter Users?

Hide Verified Twitter Users - это расширение Chrome, разработанное sardistic, и его основная функция - "A Chrome extension that hides verified Twitter users' posts.".

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

screenshot

Скачать файл CRX расширения Hide Verified Twitter Users

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

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

                        Chrome Extension: Hide Verified Posts
This Chrome extension allows you to toggle hiding verified posts on Twitter. When the extension is active, it will hide all tweets from verified users.

How to use
Install the extension in your Chrome browser.
Click on the extension icon in the toolbar to toggle between hiding and showing verified posts.
The extension will automatically update the display of tweets on the current page according to your preference (hide/show verified posts).

This is a very crude extension that sometimes produces errors, but works enough for my purposes. If you'd like to update or change any of the code, it is published on GitHub here:

https://github.com/sardistic/Hide-Verified-Twitter-Users                    

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

Название Hide Verified Twitter Users Hide Verified Twitter Users
ID egpeogmkamgdmolhpkajgnoookedcghb
Официальный URL https://chromewebstore.google.com/detail/hide-verified-twitter-use/egpeogmkamgdmolhpkajgnoookedcghb
Описание A Chrome extension that hides verified Twitter users' posts.
Размер файла 7.72 KB
Количество установок 62
Текущая Версия 1.0
Последнее Обновление 2023-04-27
Дата публикации 2023-04-26
Рейтинг 2.00/5 Всего 1 оценок
Разработчик sardistic
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.sardistic.com
URL страницы помощи https://ko-fi.com/sardistic
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Hide Verified Twitter Users",
    "version": "1.0",
    "description": "A Chrome extension that hides verified Twitter users' posts.",
    "icons": {
        "48": "icon.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "48": "icon.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ]
}