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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    ]
}