Faceit Elo Calculator
Show Elo Gain/Loss for Faceit Matches
Cos'è Faceit Elo Calculator?
Faceit Elo Calculator è un'estensione di Chrome sviluppata da Dandrews, e la sua funzione principale è "Show Elo Gain/Loss for Faceit Matches".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Faceit Elo Calculator
Scarica i file di estensione Faceit Elo Calculator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Faceit Elo Calculator |
ID | nlecamndipbaenpocnhcbemdnmmdaimc |
URL Ufficiale | https://chromewebstore.google.com/detail/faceit-elo-calculator/nlecamndipbaenpocnhcbemdnmmdaimc |
Descrizione | Show Elo Gain/Loss for Faceit Matches |
Dimensione del File | 222 KB |
Conteggio Installazioni | 11,927 |
Versione Corrente | 0.3.1 |
Ultimo Aggiornamento | 2024-01-17 |
Data di Pubblicazione | 2022-04-27 |
Valutazione | 3.70/5 Totale 10 Valutazioni |
Sviluppatore | Dandrews |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/DandrewsDev/faceit-elo-calc |
URL della Pagina di Aiuto | https://discord.gg/ssfH5yCeeR |
Lingue Supportate | 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\/*" ] } ] } |