Auto Claim Twitch Channel Points
Will automatically click the button for claiming channel points on Twitch.
Что такое Auto Claim Twitch Channel Points?
Auto Claim Twitch Channel Points - это расширение Chrome, разработанное mikeyaworski, и его основная функция - "Will automatically click the button for claiming channel points on Twitch.".
Снимки экрана расширения
Скачать файл CRX расширения Auto Claim Twitch Channel Points
Скачайте файлы расширений Auto Claim Twitch Channel Points в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
A very simple script which runs in the background on Twitch pages. It automatically clicks the button to claim channel points on Twitch when it appears. Source code: https://github.com/mikeyaworski/Auto-Claim-Twitch-Channel-Points
Основная информация о расширении
Название | Auto Claim Twitch Channel Points |
ID | jfkamlikjbpcgjcdicpjaofammhfgjjh |
Официальный URL | https://chromewebstore.google.com/detail/auto-claim-twitch-channel/jfkamlikjbpcgjcdicpjaofammhfgjjh |
Описание | Will automatically click the button for claiming channel points on Twitch. |
Размер файла | 8.29 KB |
Количество установок | 14,923 |
Текущая Версия | 2.0.0 |
Последнее Обновление | 2023-03-09 |
Дата публикации | 2020-05-01 |
Рейтинг | 4.00/5 Всего 16 оценок |
Разработчик | mikeyaworski |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы помощи | https://mikeyaworski.com/contact |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Auto Claim Twitch Channel Points", "description": "Will automatically click the button for claiming channel points on Twitch.", "version": "2.0.0", "manifest_version": 3, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.twitch.tv\/*" ], "js": [ "main.js", "interval.js", "mutation-observer.js" ] } ], "action": { "default_popup": "popup.html" }, "permissions": [ "storage" ] } |