CF World Standings
This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country.
Wat is CF World Standings?
CF World Standings is een Chrome-extensie ontwikkeld door brenopoggiali, en de belangrijkste functie is "This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country.".
Extensie Screenshots
Download het CRX-bestand van de extensie CF World Standings
Download CF World Standings-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | caginmipmmelcmijagfppgdljepiioak |
| Officiële URL | https://chromewebstore.google.com/detail/cf-world-standings/caginmipmmelcmijagfppgdljepiioak |
| Beschrijving | This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country. |
| Bestandsgrootte | 74.43 KB |
| Aantal Installaties | 8,393 |
| Huidige Versie | 1.0.1 |
| Laatst Bijgewerkt | 2020-04-02 |
| Publicatiedatum | 2020-03-31 |
| Beoordeling | 4.53/5 Totaal 17 Beoordelingen |
| Ontwikkelaar | brenopoggiali |
| [email protected] | |
| Betalingswijze | free |
| Help Pagina-URL | https://github.com/brenopoggiali/CF-World-Standings |
| Ondersteunde Talen | 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"
]
} | |