Flowbot44's Axie Infinity Extension
This extension will help with some Axie damage calculations
Flowbot44's Axie Infinity Extensionとは何ですか?
Flowbot44's Axie Infinity Extensionはflowbot44によって開発されたChromeの拡張機能で、その主な機能は「This extension will help with some Axie damage calculations」です。
拡張機能のスクリーンショット
Flowbot44's Axie Infinity Extension拡張機能のCRXファイルをダウンロード
Flowbot44's Axie Infinity Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension helps break down the amount an Axie can do vs other Axies for Axie Infinity. This plug adds a damage table to an Axies page and then totals the damage and energy used for their ability. To add ability to the damage table drag the ability card and drop it over the Axie Image. For more details of how damage is calculated please visit https://binaryassets.io/eth-dapps/axie-infinity-damage-shield-explained/ Updated for Season 20 damage balance changes and updated for skill combination changes. Critical damage calculations are displayed on hover of damage on table. There is an inconsistent rounding error between calculations and the game so this damage may be off by 1. We do not store any information about the user and the information collected is to make sure the correct information is displayed correctly on the page.
拡張機能の基本情報
名前 | Flowbot44's Axie Infinity Extension |
ID | iknjhcclpcildaklifghhjblmbjpkole |
公式URL | https://chromewebstore.google.com/detail/flowbot44s-axie-infinity/iknjhcclpcildaklifghhjblmbjpkole |
説明 | This extension will help with some Axie damage calculations |
ファイルサイズ | 43.27 KB |
インストール数 | 10,000 |
現在のバージョン | 1.2.2 |
最終更新日 | 2022-01-25 |
公開日 | 2020-06-06 |
評価 | 3.71/5 合計 14 レビュー |
開発者 | flowbot44 |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/flowbot/AxieChromeExt/blob/master/eula-english.txt |
ヘルプページのURL | https://github.com/flowbot/AxieChromeExt/issues |
プライバシーポリシーページのURL | https://github.com/flowbot/AxieChromeExt/blob/master/eula-english.txt |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Flowbot44's Axie Infinity Extension", "description": "This extension will help with some Axie damage calculations", "version": "1.2.2", "browser_action": { "default_icon": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png" }, "default_popup": "popup.html" }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/marketplace.axieinfinity.com\/axie\/*" ], "js": [ "contentScript.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "https:\/\/marketplace.axieinfinity.com\/axie\/*", "tabs", "webNavigation" ] } |