Auto Claim Twitch Channel Points
Will automatically click the button for claiming channel points on Twitch.
Apa itu Auto Claim Twitch Channel Points?
Auto Claim Twitch Channel Points adalah ekstensi Chrome yang dikembangkan oleh mikeyaworski, dan fitur utamanya adalah "Will automatically click the button for claiming channel points on Twitch.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Auto Claim Twitch Channel Points
Unduh file ekstensi Auto Claim Twitch Channel Points dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Auto Claim Twitch Channel Points |
ID | jfkamlikjbpcgjcdicpjaofammhfgjjh |
URL Resmi | https://chromewebstore.google.com/detail/auto-claim-twitch-channel/jfkamlikjbpcgjcdicpjaofammhfgjjh |
Deskripsi | Will automatically click the button for claiming channel points on Twitch. |
Ukuran File | 8.29 KB |
Jumlah Instalasi | 14,923 |
Versi Saat Ini | 2.0.0 |
Terakhir Diperbarui | 2023-03-09 |
Tanggal Publikasi | 2020-05-01 |
Penilaian | 4.00/5 Total 16 Penilaian |
Pengembang | mikeyaworski |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Bantuan | https://mikeyaworski.com/contact |
Bahasa yang Didukung | 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" ] } |