Flowbot44's Axie Infinity Extension

This extension will help with some Axie damage calculations

Apa itu Flowbot44's Axie Infinity Extension?

Flowbot44's Axie Infinity Extension adalah ekstensi Chrome yang dikembangkan oleh flowbot44, dan fitur utamanya adalah "This extension will help with some Axie damage calculations".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Flowbot44's Axie Infinity Extension

Unduh file ekstensi Flowbot44's Axie Infinity Extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Flowbot44's Axie Infinity Extension Flowbot44's Axie Infinity Extension
ID iknjhcclpcildaklifghhjblmbjpkole
URL Resmi https://chromewebstore.google.com/detail/flowbot44s-axie-infinity/iknjhcclpcildaklifghhjblmbjpkole
Deskripsi This extension will help with some Axie damage calculations
Ukuran File 43.27 KB
Jumlah Instalasi 10,000
Versi Saat Ini 1.2.2
Terakhir Diperbarui 2022-01-25
Tanggal Publikasi 2020-06-06
Penilaian 3.71/5 Total 14 Penilaian
Pengembang flowbot44
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/flowbot/AxieChromeExt/blob/master/eula-english.txt
URL Halaman Bantuan https://github.com/flowbot/AxieChromeExt/issues
URL Halaman Kebijakan Privasi https://github.com/flowbot/AxieChromeExt/blob/master/eula-english.txt
Bahasa yang Didukung 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"
    ]
}