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
公式URL 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
Eメール [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"
    ]
}