CF World Standings
This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country.
CF World Standingsคืออะไร?
CF World Standings เป็นส่วนขยายของ Chrome ที่พัฒนาโดย brenopoggiali และคุณลักษณะหลักของมันคือ "This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CF World Standings
ดาวน์โหลดไฟล์ส่วนขยาย CF World Standings ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
All the countries with more than 5 active users are listed and the lists are updated every weekend. Unfortunately, Codeforces does not allow us to have a list with more than 1000 users. In those cases, we give preference for active users (those who played a contest in the last month) and those with higher ratings.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | CF World Standings |
ID | caginmipmmelcmijagfppgdljepiioak |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/cf-world-standings/caginmipmmelcmijagfppgdljepiioak |
คำอธิบาย | This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country. |
ขนาดไฟล์ | 74.43 KB |
จำนวนการติดตั้ง | 8,393 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2020-04-02 |
วันที่เผยแพร่ | 2020-03-31 |
คะแนน | 4.53/5 รวมทั้งหมด 17 คะแนน |
ผู้พัฒนา | brenopoggiali |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://github.com/brenopoggiali/CF-World-Standings |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "CF World Standings ", "description": "This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country.", "version": "1.0.1", "manifest_version": 2, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/jquery.min.js", "js\/background.js" ] } ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_icon": "icons\/icon16.png", "default_popup": "index.html", "default_title": "CF World Standings" }, "permissions": [ "tabs", "storage" ] } |