CF World Standings

This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country.

O que é CF World Standings?

CF World Standings é uma extensão do Chrome desenvolvida por brenopoggiali, e sua principal característica é "This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão CF World Standings

Baixe arquivos de extensão CF World Standings no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome CF World Standings CF World Standings
ID caginmipmmelcmijagfppgdljepiioak
URL Oficial https://chromewebstore.google.com/detail/cf-world-standings/caginmipmmelcmijagfppgdljepiioak
Descrição This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country.
Tamanho do Arquivo 74.43 KB
Contagem de Instalações 8,393
Versão Atual 1.0.1
Última Atualização 2020-04-02
Data de Publicação 2020-03-31
Classificação 4.53/5 Total de 17 Avaliações
Desenvolvedor brenopoggiali
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/brenopoggiali/CF-World-Standings
Idiomas Suportados 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"
    ]
}