CKBox
Advanced toolbox for CryptoKitties
CKBoxとは何ですか?
CKBoxはhttps://www.ckbox.coによって開発されたChromeの拡張機能で、その主な機能は「Advanced toolbox for CryptoKitties」です。
拡張機能のスクリーンショット
CKBox拡張機能のCRXファイルをダウンロード
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... 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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
}
} | |