Twitch Channel Points Auto-Clicker
Automatically claims Twitch channel watch rewards.
Что такое Twitch Channel Points Auto-Clicker?
Twitch Channel Points Auto-Clicker - это расширение Chrome, разработанное Francis Rhee, и его основная функция - "Automatically claims Twitch channel watch rewards.".
Снимки экрана расширения
Скачать файл CRX расширения Twitch Channel Points Auto-Clicker
Скачайте файлы расширений Twitch Channel Points Auto-Clicker в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Have you ever been in a different tab or been away while leaving a stream on, and came back to the stream realizing you could've claimed your watch reward a long time ago? This extension allows you to sit back and focus your attention on other things while it claims your points automatically for you, instead of needing to periodically checking on the chat to claim your rewards.
Основная информация о расширении
Название | Twitch Channel Points Auto-Clicker |
ID | gcfemncaehdhehnidnegppgofnmomido |
Официальный URL | https://chromewebstore.google.com/detail/twitch-channel-points-aut/gcfemncaehdhehnidnegppgofnmomido |
Описание | Automatically claims Twitch channel watch rewards. |
Размер файла | 7.34 KB |
Количество установок | 948 |
Текущая Версия | 1.0 |
Последнее Обновление | 2020-11-11 |
Дата публикации | 2020-11-11 |
Рейтинг | 4.25/5 Всего 4 оценок |
Разработчик | Francis Rhee |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitch Channel Points Auto-Clicker", "version": "1.0", "description": "Automatically claims Twitch channel watch rewards.", "permissions": [ "declarativeContent" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/www.twitch.tv\/*" ], "js": [ "content_script.js" ], "run_at": "document_idle" } ], "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "manifest_version": 2 } |