Chess Tier

Replaces your chess.com rating with a Chess Tier

什麼是Chess Tier?

Chess Tier是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Replaces your chess.com rating with a Chess Tier”。

擴展截圖

screenshot
screenshot
screenshot

下載Chess Tier擴展crx文件

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

擴展使用說明

                        Ever wish chess.com had a tiered ranking system instead of displaying your rating number? This extension replaces your rating with a tier, so you can focus on your long-term skill level trends instead of watching your rating fluctuate after every game. There are currently 7 tiers, each with 4 to 5 sub-tiers.

🔔 Bronze (~25% of players)
🥄 Silver (~25% of players)
⚜ Gold (~25% of players)
⚔️ Platinum (~15% of players)
💎 Diamond (~7% of players)
👑 Champion (~3% of players)
🔮 Legendary (~0.5% of players)

You can also turn on the "use USCF ratings?" setting to get a tier that is based on the Elo rating distribution of US Chess Federation players instead of the rating distribution of chess.com players.

Learn more at github.com/triton11/ChessTier                    

擴展基本資訊

名稱 Chess Tier Chess Tier
ID lgfppmbhddgaaihjmjapjmhdkogkaagg
官方網址 https://chromewebstore.google.com/detail/chess-tier/lgfppmbhddgaaihjmjapjmhdkogkaagg
簡介 Replaces your chess.com rating with a Chess Tier
檔案大小 15.04 KB
安裝次數 95
目前版本 1.2
更新時間 2021-11-07
上架時間 2021-11-03
評分 5.00/5 共 2 次評分
開發者 Unknown
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/triton11/ChessTier
說明頁面URL https://github.com/triton11/ChessTier
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chess Tier",
    "short_name": "Chess Tier",
    "manifest_version": 3,
    "version": "1.2",
    "description": "Replaces your chess.com rating with a Chess Tier",
    "author": "Tristrum Tuttle",
    "icons": {
        "16": "\/img\/chesstier16.png",
        "48": "\/img\/chesstier48.png",
        "128": "\/img\/chesstier128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.chess.com\/*"
            ],
            "all_frames": true,
            "js": [
                "main_script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ]
}