CKBox
Advanced toolbox for CryptoKitties
CKBox là gì?
CKBox là một tiện ích mở rộng Chrome được phát triển bởi https://www.ckbox.co, và tính năng chính của nó là "Advanced toolbox for CryptoKitties".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng CKBox
Tải xuống các tệp mở rộng CKBox dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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...
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | CKBox |
ID | jkefllnpggoehndkogpdjndhfidgnchk |
URL Chính Thức | https://chromewebstore.google.com/detail/ckbox/jkefllnpggoehndkogpdjndhfidgnchk |
Mô tả | Advanced toolbox for CryptoKitties |
Kích Thước Tệp | 153 KB |
Số Lần Cài Đặt | 1,027 |
Phiên Bản Hiện Tại | 0.32.22 |
Cập Nhật Lần Cuối | 2023-12-10 |
Ngày Phát Hành | 2020-06-24 |
Đánh Giá | 4.90/5 Tổng số 10 Đánh Giá |
Nhà Phát Triển | https://www.ckbox.co |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } } |