Breedict
Axie Infinity - Breed Prediction Simulator
Breedictとは何ですか?
Breedictはhiraishinstudiosによって開発されたChromeの拡張機能で、その主な機能は「Axie Infinity - Breed Prediction Simulator」です。
拡張機能のスクリーンショット
Breedict拡張機能のCRXファイルをダウンロード
Breedict拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Breedict is free to help Axie Infinity players.
Our extension tries to predict the status of an Axie egg.
Disclaimer: Breedict doesn't display real data from Axie Infinity game. Numbers, predictions and data could be wrong! 拡張機能の基本情報
| 名前 | |
| ID | lmcdhjgkpgdoejhddiiknaiajmcodnfk |
| 公式URL | https://chromewebstore.google.com/detail/breedict/lmcdhjgkpgdoejhddiiknaiajmcodnfk |
| 説明 | Axie Infinity - Breed Prediction Simulator |
| ファイルサイズ | 61.88 KB |
| インストール数 | 81 |
| 現在のバージョン | 1.1.0 |
| 最終更新日 | 2021-10-16 |
| 公開日 | 2021-10-05 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | hiraishinstudios |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://nft-tools.github.io/ |
| 対応言語 | pt-BR |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"version": "1.1.0",
"name": "Breedict",
"description": "Axie Infinity - Breed Prediction Simulator",
"author": "Porai",
"action": {
"default_icon": {
"16": "icon16.png",
"24": "icon24.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"default_title": "Breedict",
"default_popup": "index.html"
},
"permissions": [
"storage"
],
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"https:\/\/graphql-gateway.axieinfinity.com\/*",
"https:\/\/marketplace.axieinfinity.com\/*",
"https:\/\/axieinfinity.com\/*"
],
"content_scripts": [
{
"css": [
"styles.css"
],
"matches": [
"https:\/\/graphql-gateway.axieinfinity.com\/*",
"https:\/\/marketplace.axieinfinity.com\/*",
"https:\/\/axieinfinity.com\/*"
],
"js": [
"constants.js",
"dna.js",
"axios.min.js",
"bignumber.min.js",
"script.js"
],
"run_at": "document_start"
}
]
} | |