Pokemon Showdown Player Ratings
This extension will get both the user's and their opponent's ratings.
Pokemon Showdown Player Ratingsคืออะไร?
Pokemon Showdown Player Ratings เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Celestavian และคุณลักษณะหลักของมันคือ "This extension will get both the user's and their opponent's ratings."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pokemon Showdown Player Ratings
ดาวน์โหลดไฟล์ส่วนขยาย Pokemon Showdown Player Ratings ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Your opponent's rating can be a vital piece of information, and now you can look it up with a simple click of a button! When you're laddering on Pokemon Showdown with this extension installed, just click on the icon in the corner to fetch both your rating and your opponent's rating in the tier you're currently playing in. It also works for spectating matches. Designed specifically for use on play.pokemonshowdown.com or other hosted PS! servers with a psim.us address.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Pokemon Showdown Player Ratings |
ID | dinicgnlokehfhgdpnmochdhhhcfgiga |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/pokemon-showdown-player-r/dinicgnlokehfhgdpnmochdhhhcfgiga |
คำอธิบาย | This extension will get both the user's and their opponent's ratings. |
ขนาดไฟล์ | 60.32 KB |
จำนวนการติดตั้ง | 605 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2017-01-25 |
วันที่เผยแพร่ | 2017-01-24 |
คะแนน | 4.00/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | Celestavian |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pokemon Showdown Player Ratings", "description": "This extension will get both the user's and their opponent's ratings.", "version": "1.1", "background": { "persistent": false, "scripts": [ "jquery-3.1.1.min.js", "bg.js" ] }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*.pokemonshowdown.com\/*", "https:\/\/*.pokemonshowdown.com\/*", "http:\/\/*.psim.us\/*", "https:\/\/*.psim.us\/*" ], "js": [ "jquery-3.1.1.min.js", "content.js" ] } ], "page_action": { "default_icon": "icon16.png", "default_title": "Player Information", "default_popup": "popup.html" }, "permissions": [ "http:\/\/*.pokemonshowdown.com\/battle*", "https:\/\/*.pokemonshowdown.com\/battle*", "http:\/\/*.psim.us\/battle*", "https:\/\/*.psim.us\/battle*", "tabs", "declarativeContent" ] } |