Auto Claim Twitch Channel Points
Will automatically click the button for claiming channel points on Twitch.
Co je Auto Claim Twitch Channel Points?
Auto Claim Twitch Channel Points je rozšíření Chrome vyvinuté mikeyaworski, a jeho hlavní funkcí je „Will automatically click the button for claiming channel points on Twitch.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Auto Claim Twitch Channel Points
Stáhněte si soubory rozšíření Auto Claim Twitch Channel Points ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Auto Claim Twitch Channel Points |
ID | jfkamlikjbpcgjcdicpjaofammhfgjjh |
Oficiální URL | https://chromewebstore.google.com/detail/auto-claim-twitch-channel/jfkamlikjbpcgjcdicpjaofammhfgjjh |
Popis | Will automatically click the button for claiming channel points on Twitch. |
Velikost souboru | 8.29 KB |
Počet instalací | 14,923 |
Aktuální Verze | 2.0.0 |
Poslední Aktualizace | 2023-03-09 |
Datum Vydání | 2020-05-01 |
Hodnocení | 4.00/5 Celkem 16 Hodnocení |
Vývojář | mikeyaworski |
[email protected] | |
Typ Platby | free |
URL Stránky Nápovědy | https://mikeyaworski.com/contact |
Podporované Jazyky | 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" ] } |