Twitch Channel Points Autoclicker
Automatically claims 'Channel Points' on Twitch
Что такое Twitch Channel Points Autoclicker?
Twitch Channel Points Autoclicker - это расширение Chrome, разработанное xinitrc, и его основная функция - "Automatically claims 'Channel Points' on Twitch".
Снимки экрана расширения
Скачать файл CRX расширения Twitch Channel Points Autoclicker
Скачайте файлы расширений Twitch Channel Points Autoclicker в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Automatically claims 'Channel Points' on Twitch for the channel you are watching. LITE version that requires no permissions is also available: https://chrome.google.com/webstore/detail/fapndfdannkgofolmaihpbigbolcobek/ Also available for Mozilla Firefox: https://addons.mozilla.org/en-GB/firefox/addon/twitch-points-autoclicker/ What permissions are used and why: https://xinitrc.ca/autoclicker-permissions/ Note: May not be compatible with some twitch design changing extensions. Available on GitHub: https://github.com/xinitrc-dev/twitch-points-autoclicker
Основная информация о расширении
Название | Twitch Channel Points Autoclicker |
ID | pbeamibpehihpjljabhnchghlbneiane |
Официальный URL | https://chromewebstore.google.com/detail/twitch-channel-points-aut/pbeamibpehihpjljabhnchghlbneiane |
Описание | Automatically claims 'Channel Points' on Twitch |
Размер файла | 110 KB |
Количество установок | 140,516 |
Текущая Версия | 1.6.1 |
Последнее Обновление | 2021-01-14 |
Дата публикации | 2020-05-05 |
Рейтинг | 3.88/5 Всего 134 оценок |
Разработчик | xinitrc |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы помощи | https://xinitrc.ca/autoclicker-permissions |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitch Channel Points Autoclicker", "description": "Automatically claims 'Channel Points' on Twitch", "version": "1.6.1", "icons": { "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.twitch.tv\/*" ], "js": [ "arrive-2.4.1.min.js", "twitch-clicker.js" ], "run_at": "document_idle" } ], "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "*:\/\/*.twitch.tv\/*", "tabs", "storage", "notifications", "webNavigation" ], "web_accessible_resources": [ "arrive-2.4.1.min.js", "twitch-clicker.js" ], "options_ui": { "page": "options.html", "open_in_tab": true }, "browser_action": { "default_title": "Channel Points Autoclicker", "default_icon": { "48": "icon48.png", "128": "icon128.png" }, "default_popup": "popup.html" } } |