Twitch Channel Points Auto Redeem

Automatically redeem the bonus channel points when the option pops up in twitch chat

Что такое Twitch Channel Points Auto Redeem?

Twitch Channel Points Auto Redeem - это расширение Chrome, разработанное Frank, и его основная функция - "Automatically redeem the bonus channel points when the option pops up in twitch chat".

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

screenshot

Скачать файл CRX расширения Twitch Channel Points Auto Redeem

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

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

                        You can tell it is working because it will say "STREAM CHAT (AUTO ✅)" instead of just "STREAM CHAT" above the chat. It will take a few seconds to appear after a stream is loaded.

Open source at https://github.com/FrankSalmick/twitch-autoredeem

Report problems at https://github.com/FrankSalmick/twitch-autoredeem/issues                    

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

Название Twitch Channel Points Auto Redeem Twitch Channel Points Auto Redeem
ID aklgphppnaannfmmijfggcckafbkbihi
Официальный URL https://chromewebstore.google.com/detail/twitch-channel-points-aut/aklgphppnaannfmmijfggcckafbkbihi
Описание Automatically redeem the bonus channel points when the option pops up in twitch chat
Размер файла 7.08 KB
Количество установок 903
Текущая Версия 20.12.23
Последнее Обновление 2020-12-24
Дата публикации 2020-04-08
Рейтинг 4.80/5 Всего 5 оценок
Разработчик Frank
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/FrankSalmick/twitch-autoredeem
URL страницы помощи https://github.com/FrankSalmick/twitch-autoredeem/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Automatically redeem the bonus channel points when the option pops up in twitch chat",
    "manifest_version": 2,
    "name": "Twitch Channel Points Auto Redeem",
    "short_name": "Channel Points Redeemer",
    "version": "20.12.23",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "twitchAutoredeem.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "128": "icon128.png"
    }
}