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 brenopoggiali द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में CF World Standings एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } |