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\/*" ] } ] } |