Chess Tier
Replaces your chess.com rating with a Chess Tier
Was ist Chess Tier?
Chess Tier ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Replaces your chess.com rating with a Chess Tier".
Erweiterungsscreenshots
Chess Tier-Erweiterungs-CRX-Datei herunterladen
Laden Sie Chess Tier-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Chess Tier |
ID | lgfppmbhddgaaihjmjapjmhdkogkaagg |
Offizielle URL | https://chromewebstore.google.com/detail/chess-tier/lgfppmbhddgaaihjmjapjmhdkogkaagg |
Beschreibung | Replaces your chess.com rating with a Chess Tier |
Dateigröße | 15.04 KB |
Installationsanzahl | 95 |
Aktuelle Version | 1.2 |
Letztes Update | 2021-11-07 |
Veröffentlichungsdatum | 2021-11-03 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | Unknown |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/triton11/ChessTier |
Hilfeseite URL | https://github.com/triton11/ChessTier |
Unterstützte Sprachen | 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" ] } |