Auto Claim Twitch Channel Points
Will automatically click the button for claiming channel points on Twitch.
ما هو Auto Claim Twitch Channel Points؟
Auto Claim Twitch Channel Points هو إضافة Chrome تم تطويرها بواسطة mikeyaworski، والميزة الرئيسية لها هي "Will automatically click the button for claiming channel points on Twitch.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Auto Claim Twitch Channel Points
قم بتنزيل ملفات الامتداد Auto Claim Twitch Channel Points بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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
معلومات أساسية عن التمديد
الاسم | Auto Claim Twitch Channel Points |
ID | jfkamlikjbpcgjcdicpjaofammhfgjjh |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/auto-claim-twitch-channel/jfkamlikjbpcgjcdicpjaofammhfgjjh |
الوصف | Will automatically click the button for claiming channel points on Twitch. |
حجم الملف | 8.29 KB |
عدد التثبيتات | 14,923 |
النسخة الحالية | 2.0.0 |
آخر تحديث | 2023-03-09 |
تاريخ النشر | 2020-05-01 |
تقييم | 4.00/5 مجموع تقييمات 16 |
المطور | mikeyaworski |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة المساعدة | https://mikeyaworski.com/contact |
اللغات المدعومة | 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" ] } |