ESEA Ranks
Shows player ranks & MMR on match pages
ESEA Ranksคืออะไร?
ESEA Ranks เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hleV และคุณลักษณะหลักของมันคือ "Shows player ranks & MMR on match pages"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ESEA Ranks
ดาวน์โหลดไฟล์ส่วนขยาย ESEA Ranks ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension adds Rank and MMR columns to the stats table in ESEA match pages. If you find this useful, you are welcome to donate via PayPal: https://paypal.me/hleVqq Enjoy :)
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ESEA Ranks |
ID | aojbflicmonbdpdafocjbmfgogcflnnl |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/esea-ranks/aojbflicmonbdpdafocjbmfgogcflnnl |
คำอธิบาย | Shows player ranks & MMR on match pages |
ขนาดไฟล์ | 8.63 KB |
จำนวนการติดตั้ง | 101 |
เวอร์ชันปัจจุบัน | 1.6 |
อัปเดตครั้งล่าสุด | 2020-08-16 |
วันที่เผยแพร่ | 2020-08-15 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | hleV |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://github.com/hleVqq/EseaRanks/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ESEA Ranks", "version": "1.6", "description": "Shows player ranks & MMR on match pages", "permissions": [ "webNavigation", "*:\/\/play.esea.net\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/play.esea.net\/*" ], "js": [ "content.js" ] } ], "manifest_version": 2, "icons": { "16": "esea.png", "48": "esea.png", "128": "esea.png" }, "browser_action": { "default_popup": "popup.html" } } |