Promute

Promute automatically mutes twitter accounts sending promotions to your timeline as you scroll by.

Что такое Promute?

Promute - это расширение Chrome, разработанное wolfgang.werner, и его основная функция - "Promute automatically mutes twitter accounts sending promotions to your timeline as you scroll by.".

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

screenshot

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

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

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

                        Promute is a Chrome Extension that automatically mutes twitter accounts sending promotions to your timeline as you scroll by.

It does the simplest thing that could possibly work.
Within a scroll listener, it ...
* ... identifies promoted tweets by the 'Ad' label at the top of the tweet,
* ... opens the tweets context menu,
* ... and clicks the mute button                    

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

Название Promute Promute
ID jcglghjinanokeldhiebokopnoppbnnn
Официальный URL https://chromewebstore.google.com/detail/promute/jcglghjinanokeldhiebokopnoppbnnn
Описание Promute automatically mutes twitter accounts sending promotions to your timeline as you scroll by.
Размер файла 26.1 KB
Количество установок 37
Текущая Версия 1.0.10
Последнее Обновление 2023-08-29
Дата публикации 2020-12-25
Рейтинг 5.00/5 Всего 2 оценок
Разработчик wolfgang.werner
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/wwerner/promute
URL страницы помощи https://github.com/wwerner/promute/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Promute",
    "manifest_version": 2,
    "version": "1.0.10",
    "description": "Promute automatically mutes twitter accounts sending promotions to your timeline as you scroll by.",
    "icons": {
        "16": ".\/logo_16.png",
        "48": ".\/logo_48.png",
        "128": ".\/logo_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/twitter.com\/*"
            ],
            "js": [
                "promute.js"
            ]
        }
    ]
}