Chess Tier
Replaces your chess.com rating with a Chess Tier
Chess Tier क्या है?
Chess Tier Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Replaces your chess.com rating with a Chess Tier"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Chess Tier एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" ] } |