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"입니다.
확장 프로그램 스크린샷
Flowbot44's Axie Infinity Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" ] } |