Auto Claim Twitch Channel Points
Will automatically click the button for claiming channel points on Twitch.
Co to jest Auto Claim Twitch Channel Points?
Auto Claim Twitch Channel Points to rozszerzenie Chrome opracowane przez mikeyaworski, a jego główną funkcją jest „Will automatically click the button for claiming channel points on Twitch.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Auto Claim Twitch Channel Points
Pobierz pliki rozszerzeń Auto Claim Twitch Channel Points w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Auto Claim Twitch Channel Points |
ID | jfkamlikjbpcgjcdicpjaofammhfgjjh |
Oficjalny URL | https://chromewebstore.google.com/detail/auto-claim-twitch-channel/jfkamlikjbpcgjcdicpjaofammhfgjjh |
Opis | Will automatically click the button for claiming channel points on Twitch. |
Rozmiar pliku | 8.29 KB |
Liczba instalacji | 14,923 |
Aktualna Wersja | 2.0.0 |
Ostatnia Aktualizacja | 2023-03-09 |
Data Publikacji | 2020-05-01 |
Ocena | 4.00/5 Łącznie 16 Oceny |
Deweloper | mikeyaworski |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Pomocy | https://mikeyaworski.com/contact |
Obsługiwane Języki | 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" ] } |