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 파일 다운로드

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

확장 프로그램 사용 설명서

                        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
이메일 [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"
    ]
}