CF World Standings
This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country.
Cos'è CF World Standings?
CF World Standings è un'estensione di Chrome sviluppata da brenopoggiali, e la sua funzione principale è "This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione CF World Standings
Scarica i file di estensione CF World Standings in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | caginmipmmelcmijagfppgdljepiioak |
| URL Ufficiale | https://chromewebstore.google.com/detail/cf-world-standings/caginmipmmelcmijagfppgdljepiioak |
| Descrizione | This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country. |
| Dimensione del File | 74.43 KB |
| Conteggio Installazioni | 8,393 |
| Versione Corrente | 1.0.1 |
| Ultimo Aggiornamento | 2020-04-02 |
| Data di Pubblicazione | 2020-03-31 |
| Valutazione | 4.53/5 Totale 17 Valutazioni |
| Sviluppatore | brenopoggiali |
| [email protected] | |
| Tipo di Pagamento | free |
| URL della Pagina di Aiuto | https://github.com/brenopoggiali/CF-World-Standings |
| Lingue Supportate | 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"
]
} | |