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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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\/*" ] } ] } |