Faceit Elo Calculator

Show Elo Gain/Loss for Faceit Matches

Faceit Elo Calculator란 무엇입니까?

Faceit Elo Calculator은(는) Dandrews에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show Elo Gain/Loss for Faceit Matches"입니다.

확장 프로그램 스크린샷

screenshot

Faceit Elo Calculator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Faceit Elo Calculator Faceit Elo Calculator
ID nlecamndipbaenpocnhcbemdnmmdaimc
공식 URL https://chromewebstore.google.com/detail/faceit-elo-calculator/nlecamndipbaenpocnhcbemdnmmdaimc
설명 Show Elo Gain/Loss for Faceit Matches
파일 크기 222 KB
설치 횟수 11,927
현재 버전 0.3.1
최근 업데이트 2024-01-17
출시 날짜 2022-04-27
평점 3.70/5 총 10 개의 평점
개발자 Dandrews
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/DandrewsDev/faceit-elo-calc
도움말 페이지 URL https://discord.gg/ssfH5yCeeR
지원되는 언어 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\/*"
            ]
        }
    ]
}