CF World Standings

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

Co je CF World Standings?

CF World Standings je rozšíření Chrome vyvinuté brenopoggiali, a jeho hlavní funkcí je „This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření CF World Standings

Stáhněte si soubory rozšíření CF World Standings ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název CF World Standings CF World Standings
ID caginmipmmelcmijagfppgdljepiioak
Oficiální URL https://chromewebstore.google.com/detail/cf-world-standings/caginmipmmelcmijagfppgdljepiioak
Popis This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country.
Velikost souboru 74.43 KB
Počet instalací 8,393
Aktuální Verze 1.0.1
Poslední Aktualizace 2020-04-02
Datum Vydání 2020-03-31
Hodnocení 4.53/5 Celkem 17 Hodnocení
Vývojář brenopoggiali
E-mail [email protected]
Typ Platby free
URL Stránky Nápovědy https://github.com/brenopoggiali/CF-World-Standings
Podporované Jazyky 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"
    ]
}