Chess Tier
Replaces your chess.com rating with a Chess Tier
Qu'est-ce que Chess Tier ?
Chess Tier est une extension Chrome développée par Unknown, et sa fonction principale est "Replaces your chess.com rating with a Chess Tier".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Chess Tier
Téléchargez les fichiers d'extension Chess Tier au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Chess Tier |
ID | lgfppmbhddgaaihjmjapjmhdkogkaagg |
URL Officiel | https://chromewebstore.google.com/detail/chess-tier/lgfppmbhddgaaihjmjapjmhdkogkaagg |
Description | Replaces your chess.com rating with a Chess Tier |
Taille du Fichier | 15.04 KB |
Nombre d'Installations | 95 |
Version Actuelle | 1.2 |
Dernière Mise à Jour | 2021-11-07 |
Date de Publication | 2021-11-03 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | Unknown |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/triton11/ChessTier |
URL de la Page d'Aide | https://github.com/triton11/ChessTier |
Langues Prises en Charge | 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" ] } |