Twitch - Auto Claim Points(忠誠點數)

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

Что такое Twitch - Auto Claim Points(忠誠點數)?

Twitch - Auto Claim Points(忠誠點數) - это расширение Chrome, разработанное ITyouG, и его основная функция - "Automatically claim the bonus channel points when the option pops up in twitch chat.".

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

screenshot

Скачать файл CRX расширения Twitch - Auto Claim Points(忠誠點數)

Скачайте файлы расширений Twitch - Auto Claim Points(忠誠點數) в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

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

This extension will redeem the bonus points from Twitch Channel Points that are given to viewers during live streams each 15 minutes.

Source code:https://github.com/ITyouG/Auto-Claim-Twitch-Points                    

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

Название Twitch - Auto Claim Points(忠誠點數) Twitch - Auto Claim Points(忠誠點數)
ID gjhoghnlnfbcacnbfagcbfdmjejebaje
Официальный URL https://chromewebstore.google.com/detail/twitch-auto-claim-points%E5%BF%A0/gjhoghnlnfbcacnbfagcbfdmjejebaje
Описание Automatically claim the bonus channel points when the option pops up in twitch chat.
Размер файла 6.07 KB
Количество установок 674
Текущая Версия 1.0.0
Последнее Обновление 2021-11-03
Дата публикации 2021-03-07
Рейтинг 3.00/5 Всего 2 оценок
Разработчик ITyouG
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitch - Auto Claim Points(\u5fe0\u8aa0\u9ede\u6578)",
    "description": "Automatically claim the bonus channel points when the option pops up in twitch chat.",
    "version": "1.0.0",
    "manifest_version": 2,
    "permissions": [
        "http:\/\/www.twitch.tv\/*",
        "https:\/\/www.twitch.tv\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.twitch.tv\/*",
                "https:\/\/www.twitch.tv\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "injected.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "32": "icon_32.png",
        "48": "icon_48.png",
        "64": "icon_64.png"
    }
}