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文件

下載Faceit Elo Calculator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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\/*"
            ]
        }
    ]
}