Faceit Elo Calculator

Show Elo Gain/Loss for Faceit Matches

Qu'est-ce que Faceit Elo Calculator ?

Faceit Elo Calculator est une extension Chrome développée par Dandrews, et sa fonction principale est "Show Elo Gain/Loss for Faceit Matches".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Faceit Elo Calculator

Téléchargez les fichiers d'extension Faceit Elo Calculator au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Faceit Elo Calculator Faceit Elo Calculator
ID nlecamndipbaenpocnhcbemdnmmdaimc
URL Officiel https://chromewebstore.google.com/detail/faceit-elo-calculator/nlecamndipbaenpocnhcbemdnmmdaimc
Description Show Elo Gain/Loss for Faceit Matches
Taille du Fichier 222 KB
Nombre d'Installations 11,927
Version Actuelle 0.3.1
Dernière Mise à Jour 2024-01-17
Date de Publication 2022-04-27
Évaluation 3.70/5 Total 10 Évaluations
Développeur Dandrews
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/DandrewsDev/faceit-elo-calc
URL de la Page d'Aide https://discord.gg/ssfH5yCeeR
Langues Prises en Charge 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\/*"
            ]
        }
    ]
}