CF World Standings
This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country.
Qu'est-ce que CF World Standings ?
CF World Standings est une extension Chrome développée par brenopoggiali, et sa fonction principale est "This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension CF World Standings
Téléchargez les fichiers d'extension CF World Standings au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | CF World Standings |
ID | caginmipmmelcmijagfppgdljepiioak |
URL Officiel | https://chromewebstore.google.com/detail/cf-world-standings/caginmipmmelcmijagfppgdljepiioak |
Description | This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country. |
Taille du Fichier | 74.43 KB |
Nombre d'Installations | 8,393 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2020-04-02 |
Date de Publication | 2020-03-31 |
Évaluation | 4.53/5 Total 17 Évaluations |
Développeur | brenopoggiali |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://github.com/brenopoggiali/CF-World-Standings |
Langues Prises en Charge | 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" ] } |