Twitch - Remove Top Cheer

This extension removes the top cheer from the top of chat on twitch.tv

Что такое Twitch - Remove Top Cheer?

Twitch - Remove Top Cheer - это расширение Chrome, разработанное josh.m.correia, и его основная функция - "This extension removes the top cheer from the top of chat on twitch.tv".

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

screenshot

Скачать файл CRX расширения Twitch - Remove Top Cheer

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

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

                        This is a very simple extension that has one function: to remove the top cheer from the top of chat on twitch.tv                    

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

Название Twitch - Remove Top Cheer Twitch - Remove Top Cheer
ID plhdimgjjobkjbdngkdfenkcdfipjhfc
Официальный URL https://chrome.google.com/webstore/detail/twitch-remove-top-cheer/plhdimgjjobkjbdngkdfenkcdfipjhfc
Описание This extension removes the top cheer from the top of chat on twitch.tv
Размер файла 39.8 KB
Количество установок 88
Текущая Версия 1.03
Последнее Обновление 2019-02-17
Дата публикации 2019-02-17
Рейтинг 4.00/5 Всего 4 оценок
Разработчик josh.m.correia
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitch - Remove Top Cheer",
    "description": "This extension removes the top cheer from the top of chat on twitch.tv",
    "version": "1.03",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "jquery-3.2.1.min.js",
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "remove_top_cheer.js"
            ],
            "run_at": "document_end"
        }
    ]
}