Faceit Elo Calculator
Show Elo Gain/Loss for Faceit Matches
Faceit Elo Calculator là gì?
Faceit Elo Calculator là một tiện ích mở rộng Chrome được phát triển bởi Dandrews, và tính năng chính của nó là "Show Elo Gain/Loss for Faceit Matches".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Faceit Elo Calculator
Tải xuống các tệp mở rộng Faceit Elo Calculator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Faceit Elo Calculator |
ID | nlecamndipbaenpocnhcbemdnmmdaimc |
URL Chính Thức | https://chromewebstore.google.com/detail/faceit-elo-calculator/nlecamndipbaenpocnhcbemdnmmdaimc |
Mô tả | Show Elo Gain/Loss for Faceit Matches |
Kích Thước Tệp | 222 KB |
Số Lần Cài Đặt | 11,927 |
Phiên Bản Hiện Tại | 0.3.1 |
Cập Nhật Lần Cuối | 2024-01-17 |
Ngày Phát Hành | 2022-04-27 |
Đánh Giá | 3.70/5 Tổng số 10 Đánh Giá |
Nhà Phát Triển | Dandrews |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/DandrewsDev/faceit-elo-calc |
URL Trang Trợ Giúp | https://discord.gg/ssfH5yCeeR |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |