Faceit Elo Calculator

Show Elo Gain/Loss for Faceit Matches

What is Faceit Elo Calculator?

Faceit Elo Calculator is a Chrome extension developed by Dandrews, and its main feature is "Show Elo Gain/Loss for Faceit Matches".

Extension Screenshots

screenshot

Download Faceit Elo Calculator Extension CRX File

Download Faceit Elo Calculator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Faceit Elo Calculator Faceit Elo Calculator
ID nlecamndipbaenpocnhcbemdnmmdaimc
Official URL https://chromewebstore.google.com/detail/faceit-elo-calculator/nlecamndipbaenpocnhcbemdnmmdaimc
Description Show Elo Gain/Loss for Faceit Matches
File Size 222 KB
Installation Count 11,927
Current Version 0.3.1
Last Updated 2024-01-17
Publish Date 2022-04-27
Rating 3.70/5 Total 10 Ratings
Developer Dandrews
Email [email protected]
Payment Type free
Extension Website https://github.com/DandrewsDev/faceit-elo-calc
Help Page URL https://discord.gg/ssfH5yCeeR
Supported Languages 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\/*"
            ]
        }
    ]
}