CF World Standings
This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country.
Was ist CF World Standings?
CF World Standings ist eine Chrome-Erweiterung, die von brenopoggiali entwickelt wurde, und ihr Hauptmerkmal ist "This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country.".
Erweiterungsscreenshots
CF World Standings-Erweiterungs-CRX-Datei herunterladen
Laden Sie CF World Standings-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | CF World Standings |
ID | caginmipmmelcmijagfppgdljepiioak |
Offizielle URL | https://chromewebstore.google.com/detail/cf-world-standings/caginmipmmelcmijagfppgdljepiioak |
Beschreibung | This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country. |
Dateigröße | 74.43 KB |
Installationsanzahl | 8,393 |
Aktuelle Version | 1.0.1 |
Letztes Update | 2020-04-02 |
Veröffentlichungsdatum | 2020-03-31 |
Bewertung | 4.53/5 Insgesamt 17 Bewertungen |
Entwickler | brenopoggiali |
[email protected] | |
Zahlungsart | free |
Hilfeseite URL | https://github.com/brenopoggiali/CF-World-Standings |
Unterstützte Sprachen | 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" ] } |