Flowbot44's Axie Infinity Extension

This extension will help with some Axie damage calculations

Flowbot44's Axie Infinity Extension là gì?

Flowbot44's Axie Infinity Extension là một tiện ích mở rộng Chrome được phát triển bởi flowbot44, và tính năng chính của nó là "This extension will help with some Axie damage calculations".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Flowbot44's Axie Infinity Extension

Tải xuống các tệp mở rộng Flowbot44's Axie Infinity Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Flowbot44's Axie Infinity Extension Flowbot44's Axie Infinity Extension
ID iknjhcclpcildaklifghhjblmbjpkole
URL Chính Thức https://chromewebstore.google.com/detail/flowbot44s-axie-infinity/iknjhcclpcildaklifghhjblmbjpkole
Mô tả This extension will help with some Axie damage calculations
Kích Thước Tệp 43.27 KB
Số Lần Cài Đặt 10,000
Phiên Bản Hiện Tại 1.2.2
Cập Nhật Lần Cuối 2022-01-25
Ngày Phát Hành 2020-06-06
Đánh Giá 3.71/5 Tổng số 14 Đánh Giá
Nhà Phát Triển flowbot44
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/flowbot/AxieChromeExt/blob/master/eula-english.txt
URL Trang Trợ Giúp https://github.com/flowbot/AxieChromeExt/issues
URL Trang Chính Sách Bảo Mật https://github.com/flowbot/AxieChromeExt/blob/master/eula-english.txt
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}