Faceit Elo Calculator
Show Elo Gain/Loss for Faceit Matches
什么是Faceit Elo Calculator?
Faceit Elo Calculator是由Dandrews开发的Chrome扩展程序,该扩展的主要功能是“Show Elo Gain/Loss for Faceit Matches”。
扩展截图
下载Faceit Elo Calculator扩展crx文件
下载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\/*" ] } ] } |