Faceit Elo Calculator
Show Elo Gain/Loss for Faceit Matches
Faceit Elo Calculatorคืออะไร?
Faceit Elo Calculator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dandrews และคุณลักษณะหลักของมันคือ "Show Elo Gain/Loss for Faceit Matches"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Faceit Elo Calculator
ดาวน์โหลดไฟล์ส่วนขยาย Faceit Elo Calculator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This adds additional information about the elo gained or lost to the Faceit CS2 match making system. When a is voting or in progress this will display an estimated amount of elo gained or lost for both teams. Which ever team wins gains the amount of elo showed above their team as elo gained. And the losing team loses the amount shown as loss for that team.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Faceit Elo Calculator |
ID | nlecamndipbaenpocnhcbemdnmmdaimc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/faceit-elo-calculator/nlecamndipbaenpocnhcbemdnmmdaimc |
คำอธิบาย | Show Elo Gain/Loss for Faceit Matches |
ขนาดไฟล์ | 222 KB |
จำนวนการติดตั้ง | 11,927 |
เวอร์ชันปัจจุบัน | 0.3.1 |
อัปเดตครั้งล่าสุด | 2024-01-17 |
วันที่เผยแพร่ | 2022-04-27 |
คะแนน | 3.70/5 รวมทั้งหมด 10 คะแนน |
ผู้พัฒนา | Dandrews |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/DandrewsDev/faceit-elo-calc |
URL หน้าช่วยเหลือ | https://discord.gg/ssfH5yCeeR |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Faceit Elo Calculator", "version": "0.3.1", "description": "Show Elo Gain\/Loss for Faceit Matches", "action": { "default_icon": ".\/assets\/icon-512.png", "default_popup": ".\/dist\/popup\/index.html" }, "icons": { "16": ".\/assets\/icon-512.png", "48": ".\/assets\/icon-512.png", "128": ".\/assets\/icon-512.png" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/*.faceit.com\/en\/csgo\/room\/*", "https:\/\/*.faceit.com\/en\/cs2\/room\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.faceit.com\/*" ], "js": [ ".\/dist\/contentScripts\/index.global.js" ] } ], "web_accessible_resources": [ { "resources": [ "dist\/contentScripts\/style.css" ], "matches": [ "https:\/\/*.faceit.com\/*" ] } ] } |