CF World Standings

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

CF World Standingsとは何ですか?

CF World Standingsはbrenopoggialiによって開発されたChromeの拡張機能で、その主な機能は「This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country.」です。

拡張機能のスクリーンショット

screenshot
screenshot

CF World Standings拡張機能のCRXファイルをダウンロード

CF World Standings拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 CF World Standings CF World Standings
ID caginmipmmelcmijagfppgdljepiioak
公式URL https://chromewebstore.google.com/detail/cf-world-standings/caginmipmmelcmijagfppgdljepiioak
説明 This extension filters the standings for a given contest on Codeforces to show only active competitors of a specific country.
ファイルサイズ 74.43 KB
インストール数 8,393
現在のバージョン 1.0.1
最終更新日 2020-04-02
公開日 2020-03-31
評価 4.53/5 合計 17 レビュー
開発者 brenopoggiali
Eメール [email protected]
支払い方法 free
ヘルプページのURL https://github.com/brenopoggiali/CF-World-Standings
対応言語 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"
    ]
}