Twitch loot auto-clicker
An extension who clicks on every twitch loot and gets you reports about it
Twitch loot auto-clickerคืออะไร?
Twitch loot auto-clicker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย RubenRubioM และคุณลักษณะหลักของมันคือ "An extension who clicks on every twitch loot and gets you reports about it"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitch loot auto-clicker
ดาวน์โหลดไฟล์ส่วนขยาย Twitch loot auto-clicker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
It's simple, whenever a twitch lootbox is avaliable this extension will click it for you. 🚀 Stats page ⭐️ Points colected with the extension ⭐️ Time left to the next loot box to be avaliable ⭐️ Time spent watching a specific streamer ⭐️ Reset the stats everytime you want ⭐️ Bar chart ⭐️ Pie chart
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Twitch loot auto-clicker |
ID | njpjlabehnoepgbbnnkokeadmcgmeoif |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/twitch-loot-auto-clicker/njpjlabehnoepgbbnnkokeadmcgmeoif |
คำอธิบาย | An extension who clicks on every twitch loot and gets you reports about it |
ขนาดไฟล์ | 7.15 MB |
จำนวนการติดตั้ง | 1,865 |
เวอร์ชันปัจจุบัน | 2.3.0 |
อัปเดตครั้งล่าสุด | 2021-10-17 |
วันที่เผยแพร่ | 2020-07-03 |
คะแนน | 4.57/5 รวมทั้งหมด 14 คะแนน |
ผู้พัฒนา | RubenRubioM |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/RubenRubioM/TwitchLootClicker |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Twitch loot auto-clicker", "version": "2.3.0", "description": "An extension who clicks on every twitch loot and gets you reports about it", "icons": { "16": "images\/appIcon16.png", "32": "images\/appIcon32.png", "48": "images\/appIcon48.png", "128": "images\/appIcon128.png" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/appIcon16.png", "32": "images\/appIcon32.png", "48": "images\/appIcon48.png", "128": "images\/appIcon128.png" } }, "author": "Rub\u00e9n Rubio Mart\u00ednez", "host_permissions": [ "http:\/\/www.twitch.com\/", "*:\/\/*\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.twitch.tv\/*" ], "js": [ "content.js", "functions.js", "constants.js" ] } ], "options_page": "options.html", "offline_enabled": false, "permissions": [ "storage" ] } |