Flowbot44's Axie Infinity Extension

This extension will help with some Axie damage calculations

Τι είναι το Flowbot44's Axie Infinity Extension;

Το Flowbot44's Axie Infinity Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον flowbot44, και η κύρια λειτουργία του είναι "This extension will help with some Axie damage calculations".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Flowbot44's Axie Infinity Extension

Λήψη αρχείων επέκτασης 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
Επίσημο 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
Ηλεκτρονικό ταχυδρομείο [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"
    ]
}