Auto Claim Twitch Channel Points
Will automatically click the button for claiming channel points on Twitch.
Vad är Auto Claim Twitch Channel Points?
Auto Claim Twitch Channel Points är en Chrome-tillägg utvecklad av mikeyaworski, och dess huvudfunktion är "Will automatically click the button for claiming channel points on Twitch.".
Tilläggsskärmbilder
Ladda ner Auto Claim Twitch Channel Points-förlängningens CRX-fil
Ladda ner Auto Claim Twitch Channel Points-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Auto Claim Twitch Channel Points |
ID | jfkamlikjbpcgjcdicpjaofammhfgjjh |
Officiell webbadress | https://chromewebstore.google.com/detail/auto-claim-twitch-channel/jfkamlikjbpcgjcdicpjaofammhfgjjh |
Beskrivning | Will automatically click the button for claiming channel points on Twitch. |
Filstorlek | 8.29 KB |
Antal Installationer | 14,923 |
Aktuell Version | 2.0.0 |
Senast Uppdaterad | 2023-03-09 |
Publiceringsdatum | 2020-05-01 |
Betyg | 4.00/5 Totalt 16 Betyg |
Utvecklare | mikeyaworski |
E-post | [email protected] |
Betalningssätt | free |
Hjälpsida URL | https://mikeyaworski.com/contact |
Stödda Språk | 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" ] } |