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. Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| 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"
]
} | |