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”。

擴展截圖

screenshot

下載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 Flowbot44's Axie Infinity Extension
ID iknjhcclpcildaklifghhjblmbjpkole
官方網址 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
電子郵箱 [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"
    ]
}