Twitch Auto Channel Points

Automatically collects twitch channel points for you!

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

Twitch Auto Channel Points - это расширение Chrome, разработанное joelkerfoot, и его основная функция - "Automatically collects twitch channel points for you!".

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

screenshot

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

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

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

                        Automatically claims Channel Points on all twitch streams.

Works on multiple tabs.

View the source: https://github.com/kerfootj/twitch-auto-points                    

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

Название Twitch Auto Channel Points Twitch Auto Channel Points
ID ohokfmiofkajalkbbdjbjlfbociflmfd
Официальный URL https://chrome.google.com/webstore/detail/twitch-auto-channel-point/ohokfmiofkajalkbbdjbjlfbociflmfd
Описание Automatically collects twitch channel points for you!
Размер файла 6.07 KB
Количество установок 20,000
Текущая Версия 1.0.0
Последнее Обновление 2020-01-13
Дата публикации 2020-01-13
Рейтинг 3.69/5 Всего 26 оценок
Разработчик joelkerfoot
Тип оплаты free
Официальный сайт расширения https://github.com/kerfootj/twitch-auto-points
URL страницы помощи https://github.com/kerfootj/twitch-auto-points/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitch Auto Channel Points",
    "version": "1.0.0",
    "description": "Automatically collects twitch channel points for you!",
    "manifest_version": 2,
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "points.js"
            ]
        }
    ],
    "icons": {
        "128": "icon.png",
        "48": "icon.png"
    }
}