Showdown Tooltip
Enhanced tooltip functionality for Pokemon Showdown.
Showdown Tooltipคืออะไร?
Showdown Tooltip เป็นส่วนขยายของ Chrome ที่พัฒนาโดย randomizeurs และคุณลักษณะหลักของมันคือ "Enhanced tooltip functionality for Pokemon Showdown."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Showdown Tooltip
ดาวน์โหลดไฟล์ส่วนขยาย Showdown Tooltip ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } |