Supreme bot
A bot to automatically buy supreme drops
Supreme botคืออะไร?
Supreme bot เป็นส่วนขยายของ Chrome ที่พัฒนาโดย senges.alex และคุณลักษณะหลักของมันคือ "A bot to automatically buy supreme drops"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Supreme bot
ดาวน์โหลดไฟล์ส่วนขยาย Supreme bot ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Update: Fixed bug that wouldn't allow to select a size
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | kmegjnhafkhbpehjllfjgfbnnefjffcm |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/supreme-bot/kmegjnhafkhbpehjllfjgfbnnefjffcm |
คำอธิบาย | A bot to automatically buy supreme drops |
ขนาดไฟล์ | 125 KB |
จำนวนการติดตั้ง | 136 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2019-04-25 |
วันที่เผยแพร่ | 2019-04-25 |
ผู้พัฒนา | senges.alex |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Supreme bot", "version": "1.1", "description": "A bot to automatically buy supreme drops", "manifest_version": 2, "background": { "scripts": [ ".\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.supremenewyork.com\/shop\/*" ], "js": [ ".\/bot.js" ] }, { "matches": [ "https:\/\/www.supremenewyork.com\/checkout" ], "js": [ ".\/pay.js" ] } ], "permissions": [ "activeTab", "declarativeContent", "storage" ], "page_action": { "default_popup": ".\/index.html", "default_icon": { "16": "images\/16.png", "32": "images\/32.png", "128": "images\/128.png", "256": "images\/256.jpg" } }, "icons": { "16": "images\/16.png", "32": "images\/32.png", "128": "images\/128.png", "256": "images\/256.jpg" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |