CKBox
Advanced toolbox for CryptoKitties
ما هو CKBox؟
CKBox هو إضافة Chrome تم تطويرها بواسطة https://www.ckbox.co، والميزة الرئيسية لها هي "Advanced toolbox for CryptoKitties".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة CKBox
قم بتنزيل ملفات الامتداد CKBox بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 } } |