CKBox
Advanced toolbox for CryptoKitties
CKBoxคืออะไร?
CKBox เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.ckbox.co และคุณลักษณะหลักของมันคือ "Advanced toolbox for CryptoKitties"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CKBox
ดาวน์โหลดไฟล์ส่วนขยาย CKBox ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Get your CryptoKitties out of the box! CK Box is a set of additions to CryptoKitties website. - Hidden genes - Kitty history - Breeding probabilities - Cattribute charts and stats - Jewels in market/profile list - Cattributes popup right on kitty - More cool stuff The future is meow...
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | CKBox |
ID | jkefllnpggoehndkogpdjndhfidgnchk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/ckbox/jkefllnpggoehndkogpdjndhfidgnchk |
คำอธิบาย | Advanced toolbox for CryptoKitties |
ขนาดไฟล์ | 153 KB |
จำนวนการติดตั้ง | 1,027 |
เวอร์ชันปัจจุบัน | 0.32.22 |
อัปเดตครั้งล่าสุด | 2023-12-10 |
วันที่เผยแพร่ | 2020-06-24 |
คะแนน | 4.90/5 รวมทั้งหมด 10 คะแนน |
ผู้พัฒนา | https://www.ckbox.co |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CKBox", "short_name": "CKBox", "version": "0.32.22", "description": "Advanced toolbox for CryptoKitties", "permissions": [ "storage", "https:\/\/*.ckbox.co\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.cryptokitties.co\/*" ], "css": [ "ckbox.css" ], "js": [ "ckbox.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "inject.js" ], "icons": { "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon48.png", "default_title": "CKBox 0.32.22" }, "options_ui": { "page": "options.html", "open_in_tab": false, "chrome_style": true } } |