Showdown Helper
Adds UI elements to Pokemon Showdown for easier battles
Showdown Helperคืออะไร?
Showdown Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย garvey.nick และคุณลักษณะหลักของมันคือ "Adds UI elements to Pokemon Showdown for easier battles"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Showdown Helper
ดาวน์โหลดไฟล์ส่วนขยาย Showdown Helper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Showdown Helper is a Chrome extension that adds utilities to the Pokemon Showdown UI. Feature List: * Clicking on a Pokemon in the team list will go directly to the Smogon page for it. * Show a notification on battle end * That's it for now :) https://github.com/nickgarvey/showdown-helper
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Showdown Helper |
ID | lgkjcofboheamlghbmmpegfdjifaaocl |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/showdown-helper/lgkjcofboheamlghbmmpegfdjifaaocl |
คำอธิบาย | Adds UI elements to Pokemon Showdown for easier battles |
ขนาดไฟล์ | 54.8 KB |
จำนวนการติดตั้ง | 192 |
เวอร์ชันปัจจุบัน | 1.2.0 |
อัปเดตครั้งล่าสุด | 2020-08-13 |
วันที่เผยแพร่ | 2020-08-12 |
ผู้พัฒนา | garvey.nick |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/nickgarvey/showdown-helper |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Showdown Helper", "version": "1.2.0", "description": "Adds UI elements to Pokemon Showdown for easier battles", "manifest_version": 2, "permissions": [ "declarativeContent", "notifications", "https:\/\/www.smogon.com\/", "https:\/\/play.pokemonshowdown.com\/" ], "background": { "scripts": [ "toggle_icon.js", "handle_message.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/play.pokemonshowdown.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "page_action": { "default_icon": "icon.png" } } |