Flowbot44's Axie Infinity Extension

This extension will help with some Axie damage calculations

O que é Flowbot44's Axie Infinity Extension?

Flowbot44's Axie Infinity Extension é uma extensão do Chrome desenvolvida por flowbot44, e sua principal característica é "This extension will help with some Axie damage calculations".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Flowbot44's Axie Infinity Extension

Baixe arquivos de extensão Flowbot44's Axie Infinity Extension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Flowbot44's Axie Infinity Extension Flowbot44's Axie Infinity Extension
ID iknjhcclpcildaklifghhjblmbjpkole
URL Oficial https://chromewebstore.google.com/detail/flowbot44s-axie-infinity/iknjhcclpcildaklifghhjblmbjpkole
Descrição This extension will help with some Axie damage calculations
Tamanho do Arquivo 43.27 KB
Contagem de Instalações 10,000
Versão Atual 1.2.2
Última Atualização 2022-01-25
Data de Publicação 2020-06-06
Classificação 3.71/5 Total de 14 Avaliações
Desenvolvedor flowbot44
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/flowbot/AxieChromeExt/blob/master/eula-english.txt
URL da Página de Ajuda https://github.com/flowbot/AxieChromeExt/issues
URL da Página de Política de Privacidade https://github.com/flowbot/AxieChromeExt/blob/master/eula-english.txt
Idiomas Suportados 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"
    ]
}