Twitter View Count Remover

A chrome extension to remove the Views count from Twitter

Что такое Twitter View Count Remover?

Twitter View Count Remover - это расширение Chrome, разработанное MyUsernamesThis, и его основная функция - "A chrome extension to remove the Views count from Twitter".

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

screenshot
screenshot

Скачать файл CRX расширения Twitter View Count Remover

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

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

                        Tired of seeing the new Views counter on Twitter posts? This extension finds all instances of the Views counter and hides them on any Twitter.com page, restoring the previous interface consisting of only likes, replies, and retweets.

What's new:
Fixed bug affecting extension with no usernames in whitelist
Option to move views to after likes                    

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

Название Twitter View Count Remover Twitter View Count Remover
ID chfanlbndjhbjjbacpcjbogknncaadnc
Официальный URL https://chromewebstore.google.com/detail/twitter-view-count-remove/chfanlbndjhbjjbacpcjbogknncaadnc
Описание A chrome extension to remove the Views count from Twitter
Размер файла 141 KB
Количество установок 35
Текущая Версия 0.2.2
Последнее Обновление 2023-01-16
Дата публикации 2022-12-26
Рейтинг 4.00/5 Всего 5 оценок
Разработчик MyUsernamesThis
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A chrome extension to remove the Views count from Twitter",
    "version": "0.2.2",
    "manifest_version": 3,
    "name": "Twitter View Count Remover",
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.twitter.com\/*",
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png",
                "pageScript.js"
            ],
            "matches": []
        }
    ],
    "permissions": [
        "storage"
    ]
}