Faceit Elo Calculator
Show Elo Gain/Loss for Faceit Matches
Was ist Faceit Elo Calculator?
Faceit Elo Calculator ist eine Chrome-Erweiterung, die von Dandrews entwickelt wurde, und ihr Hauptmerkmal ist "Show Elo Gain/Loss for Faceit Matches".
Erweiterungsscreenshots
Faceit Elo Calculator-Erweiterungs-CRX-Datei herunterladen
Laden Sie Faceit Elo Calculator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Faceit Elo Calculator |
ID | nlecamndipbaenpocnhcbemdnmmdaimc |
Offizielle URL | https://chromewebstore.google.com/detail/faceit-elo-calculator/nlecamndipbaenpocnhcbemdnmmdaimc |
Beschreibung | Show Elo Gain/Loss for Faceit Matches |
Dateigröße | 222 KB |
Installationsanzahl | 11,927 |
Aktuelle Version | 0.3.1 |
Letztes Update | 2024-01-17 |
Veröffentlichungsdatum | 2022-04-27 |
Bewertung | 3.70/5 Insgesamt 10 Bewertungen |
Entwickler | Dandrews |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/DandrewsDev/faceit-elo-calc |
Hilfeseite URL | https://discord.gg/ssfH5yCeeR |
Unterstützte Sprachen | 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\/*" ] } ] } |