Chess Tier
Replaces your chess.com rating with a Chess Tier
ما هو Chess Tier؟
Chess Tier هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Replaces your chess.com rating with a Chess Tier".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Chess Tier
قم بتنزيل ملفات الامتداد Chess Tier بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
عنوان صفحة المساعدة | 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" ] } |