Twitch Auto Channel Points Collector
Automatically collect channel points while you are watching someone on twitch.tv!
Twitch Auto Channel Points Collectorคืออะไร?
Twitch Auto Channel Points Collector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://jerejacobson.com และคุณลักษณะหลักของมันคือ "Automatically collect channel points while you are watching someone on twitch.tv!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitch Auto Channel Points Collector
ดาวน์โหลดไฟล์ส่วนขยาย Twitch Auto Channel Points Collector ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is an extension for twitch.tv that will auto click on channel point gifts for you.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Twitch Auto Channel Points Collector |
ID | jhkcenchneiejpdcglhdodfokjabojfp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/twitch-auto-channel-point/jhkcenchneiejpdcglhdodfokjabojfp |
คำอธิบาย | Automatically collect channel points while you are watching someone on twitch.tv! |
ขนาดไฟล์ | 46.46 KB |
จำนวนการติดตั้ง | 153 |
เวอร์ชันปัจจุบัน | 0.0.0.2 |
อัปเดตครั้งล่าสุด | 2022-02-01 |
วันที่เผยแพร่ | 2022-01-14 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | https://jerejacobson.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.jerejacobson.com/posts/buildchromeextension/ |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitch Auto Channel Points Collector", "description": "Automatically collect channel points while you are watching someone on twitch.tv!", "version": "0.0.0.2", "manifest_version": 3, "permissions": [ "storage" ], "action": { "default_popup": "popup.html", "css": [ "style.css" ], "default_icon": { "16": "\/images\/channel16.png", "32": "\/images\/channel32.png", "48": "\/images\/channel48.png", "128": "\/images\/channel128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/*.twitch.tv\/*" ], "js": [ "thirdParty\/jquery-3.6.0.min.js", "content-script.js" ] } ], "icons": { "16": "\/images\/channel16.png", "32": "\/images\/channel32.png", "48": "\/images\/channel48.png", "128": "\/images\/channel128.png" } } |