Showdown Tooltip
Enhanced tooltip functionality for Pokemon Showdown.
Showdown Tooltip란 무엇입니까?
Showdown Tooltip은(는) randomizeurs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enhanced tooltip functionality for Pokemon Showdown."입니다.
확장 프로그램 스크린샷
Showdown Tooltip 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
changelog: v1.3.1 calc support, gen9 and bugfix changelog: v1.5.2 CALC TEMPORARILY UNAVAILABLE changelog: v1.5.3 NEW calc fix, how to activate: extension's icon right changelog: v1.5.3 bugfix + type chart is back '_' click -> settings -> BETA checkbox if the extension does not works for you, please download this version: https://github.com/pkmn/randbats/releases Featuring information about your ingame opponent's potential set and stats, as well as calculations to quickly assist you in your decisions. Perfect for people who get quickly overwhelmed by the timer like me! New damage calculator extension. This extension shows the damage range of your own attacks. Things it doesn't account for: Own pokemons ability Enemy pokemons ability Enemy pokemons item "Special" Attacks (Attacks that don't have a fixed Basepower (ex.: Lowkick), use other stats (ex.: Body Press) or have fixed values(ex.: Seismic Toss)) Psyshock works correctly and is the only exeption to the before mentioned "Special" Attacks New typecharts extension. Known bugs: Transform/Illusion will ruin the numbers. Might have to reload the showdown website after the effect ends. There might still be other bugs since I didn't do extensive testing. Might realease a new and improved version if I find interest in it again. credit: Pre and MarcoSupper
확장 프로그램 기본 정보
이름 | Showdown Tooltip |
ID | ipfdjoljmkcfabfppnclebjgbehjemch |
공식 URL | https://chromewebstore.google.com/detail/showdown-tooltip/ipfdjoljmkcfabfppnclebjgbehjemch |
설명 | Enhanced tooltip functionality for Pokemon Showdown. |
파일 크기 | 24.87 KB |
설치 횟수 | 10,000 |
현재 버전 | 1.5.3.2 |
최근 업데이트 | 2024-01-15 |
출시 날짜 | 2022-07-13 |
평점 | 3.45/5 총 22 개의 평점 |
개발자 | randomizeurs |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://pkmn.cc/ |
도움말 페이지 URL | https://www.smogon.com/forums/threads/pok%C3%A9mon-showdown-randbats-tooltip.3686306/ |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Showdown Tooltip", "description": "Enhanced tooltip functionality for Pokemon Showdown.", "version": "1.5.3.2", "icons": { "16": "\/16x16.png", "32": "\/32x32.png", "48": "\/48x48.png", "128": "\/128x128.png" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "web_accessible_resources": [ { "matches": [ "*:\/\/play.pokemonshowdown.com\/*", "*:\/\/replay.pokemonshowdown.com\/*", "*:\/\/*.psim.us\/*" ], "resources": [ "\/index.js", "\/instacalc.js" ] }, { "matches": [ "*:\/\/calc.pokemonshowdown.com\/*" ], "resources": [ "\/calc.js" ] } ], "content_scripts": [ { "matches": [ "*:\/\/play.pokemonshowdown.com\/*", "*:\/\/replay.pokemonshowdown.com\/*", "*:\/\/*.psim.us\/*" ], "js": [ "\/shim.js" ] }, { "matches": [ "*:\/\/calc.pokemonshowdown.com\/*" ], "js": [ "\/shim_calc.js" ] } ], "permissions": [ "storage" ] } |