Faceit Stats by Eloking

Faceit Stats by Eloking is a Google Chrome extension that displays a users stats on FACEIT on their Steam profile.

Co je Faceit Stats by Eloking?

Faceit Stats by Eloking je rozšíření Chrome vyvinuté https://eloking.com, a jeho hlavní funkcí je „Faceit Stats by Eloking is a Google Chrome extension that displays a users stats on FACEIT on their Steam profile.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Faceit Stats by Eloking

Stáhněte si soubory rozšíření Faceit Stats by Eloking ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Faceit Stats by Eloking (previously FACE-X) is a Google Chrome extension made by boomix, original idea of BananaGaming that displays user stats from FACEIT.com on their Steam profile. Therefore it may be used as a shortcut to find more information quickly on the users FACEIT stats without having to go over to the platform.

Extensions shows data as FACEIT level, elo, premium or not, when was the profile made, how many times the player has been afk, how many times player has left any FACEIT game and if player is banned or not on FACEIT.

It works on any Steam profile, doesn't matter if it is private or not, as far as the Steam profile has been connected to FACEIT account, it will show data. 

Is pretty useful if you want to understand how good the player is before adding him or easily find out if the player is smurf or not and how old is their steam account.

1.4 added country flag support, new images for levels, average stats from last 20 games and bug fix where stats were not displayed if user was not logged in.

1.5 fixed bug with comments not working, added text about last 20 matches, changed order of stats, removed console.log

1.51 fixed issue where face-x was showing up in all comments page

1.52 fixed some rare issue with country showing up wrong and changed min-width for name field, to always show up FACEIT join date

1.6 added new FACEIT API link, fixed extension not working anymore because of old API. Also removed leaver, afk fields

1.7 switched to new FACEIT API, changed some stats to be shown, because of limited API data.

2.0 - Updated to latest manifest 3 version, switched to service worker making request to API, to get data from the old API. Now extension is showing bans, registration date again. Rewrote all main JS file, extension is loading up faster as it is async. Created Github repo for ideas, suggestions, problems and pull requests https://github.com/boomix/FACE-X . 

2.1 - added last 20 match stats

3.0 - Changed extension name

Report a problem or send feedback about the Faceit stats to [email protected]                    

Základní Informace o Rozšíření

Název Faceit Stats by Eloking Faceit Stats by Eloking
ID pkhmoinpecjngkokbmjfdhgecfljcegi
Oficiální URL https://chromewebstore.google.com/detail/faceit-stats-by-eloking/pkhmoinpecjngkokbmjfdhgecfljcegi
Popis Faceit Stats by Eloking is a Google Chrome extension that displays a users stats on FACEIT on their Steam profile.
Velikost souboru 223 KB
Počet instalací 13,725
Aktuální Verze 3
Poslední Aktualizace 2023-05-28
Datum Vydání 2020-06-29
Hodnocení 3.66/5 Celkem 53 Hodnocení
Vývojář https://eloking.com
Typ Platby free
Webové stránky Rozšíření https://eloking.com/
URL Stránky Nápovědy https://github.com/boomix/FACE-X
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Faceit Stats by Eloking",
    "icons": {
        "16": "img\/logo.png",
        "48": "img\/logo.png",
        "128": "img\/logo.png"
    },
    "version": "3",
    "manifest_version": 3,
    "homepage_url": "https:\/\/eloking.com",
    "description": "Faceit Stats by Eloking is a Google Chrome extension that displays a users stats on FACEIT on their Steam profile.",
    "action": {
        "default_icon": "img\/logo.png",
        "default_title": "Faceit Stats by Eloking"
    },
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "host_permissions": [
        "https:\/\/api.faceit.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.steamcommunity.com\/id\/*",
                "*:\/\/*.steamcommunity.com\/profiles\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.steamcommunity.com\/id\/*\/allcomments*",
                "*:\/\/*.steamcommunity.com\/profiles\/*\/allcomments*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "scripts\/main_new.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "img\/levels\/1.svg",
                "img\/levels\/2.svg",
                "img\/levels\/3.svg",
                "img\/levels\/4.svg",
                "img\/levels\/5.svg",
                "img\/levels\/6.svg",
                "img\/levels\/7.svg",
                "img\/levels\/8.svg",
                "img\/levels\/9.svg",
                "img\/levels\/10.svg",
                "img\/levels\/unranked.svg"
            ],
            "matches": [
                ""
            ]
        }
    ]
}