Twitch Auto Bonuschest
An extension that automatically clicks on bonus chests.
Twitch Auto Bonuschestคืออะไร?
Twitch Auto Bonuschest เป็นส่วนขยายของ Chrome ที่พัฒนาโดย styfish และคุณลักษณะหลักของมันคือ "An extension that automatically clicks on bonus chests."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitch Auto Bonuschest
ดาวน์โหลดไฟล์ส่วนขยาย Twitch Auto Bonuschest ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
【Features】 ・Automatically click on the bonus chest that appears after 15 minutes of viewing. ・Measure the time it takes for the bonus chest to appear. (countdown) 【Remarks】 ・The time is displayed on the icon, so fixing it is recommended. 【Github】 ・https://github.com/StyfishNoob/Twitch-AutoBC 【Update】 ・2021/5/14 ver2.0 ・2021/7/30 ver2.1 ・2021/8/11 ver2.2 ・2021/8/31 ver2.3 (Translated by DeepL)
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Twitch Auto Bonuschest |
ID | dhpinkkdmelhnmjicdamkkkoacljhknd |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/twitch-auto-bonuschest/dhpinkkdmelhnmjicdamkkkoacljhknd |
คำอธิบาย | An extension that automatically clicks on bonus chests. |
ขนาดไฟล์ | 11.64 KB |
จำนวนการติดตั้ง | 149 |
เวอร์ชันปัจจุบัน | 2.4 |
อัปเดตครั้งล่าสุด | 2021-10-02 |
วันที่เผยแพร่ | 2021-02-22 |
ผู้พัฒนา | styfish |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "2.4", "default_locale": "en", "name": "Twitch Auto Bonuschest", "description": "An extension that automatically clicks on bonus chests.", "icons": { "16": "img\/icon.png", "48": "img\/icon.png", "128": "img\/icon.png" }, "permissions": [ "tabs", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.twitch.tv\/*" ], "js": [ "contentScript.js" ] } ], "browser_action": { "default_popup": "popup\/popup.html", "default_title": "Click on the bonus chest automatically!" }, "background": { "scripts": [ "background.js" ], "persistent": true } } |