Contest Standings

Shows standings with updated names from codeforces

Contest Standings란 무엇입니까?

Contest Standings은(는) BigBag에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows standings with updated names from codeforces"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Contest Standings 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Shows standings of team contests with updated names from codeforces. Also, the total rating of each team is shown. Works on snarknews' platforms and yandex.contest. For the first one also shows the list of all teams sorted by their rating.                    

확장 프로그램 기본 정보

이름 Contest Standings Contest Standings
ID jmhjngpdfdmgmngfmbbjkmnpmfcbbcii
공식 URL https://chromewebstore.google.com/detail/contest-standings/jmhjngpdfdmgmngfmbbjkmnpmfcbbcii
설명 Shows standings with updated names from codeforces
파일 크기 105 KB
설치 횟수 66
현재 버전 3.3.5
최근 업데이트 2021-11-09
출시 날짜 2020-04-18
평점 5.00/5 총 2 개의 평점
개발자 BigBag
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Contest Standings",
    "short_name": "Contest Standings",
    "version": "3.3.5",
    "description": "Shows standings with updated names from codeforces",
    "manifest_version": 2,
    "icons": {
        "16": "static\/icon16.png",
        "32": "static\/icon32.png",
        "48": "static\/icon48.png",
        "128": "static\/icon128.png"
    },
    "permissions": [
        "background",
        "http:\/\/codeforces.com\/"
    ],
    "content_scripts": [
        {
            "js": [
                "include.js",
                "third_party\/jquery.js",
                "updateStandings.js"
            ],
            "css": [
                "styles.css"
            ],
            "matches": [
                "http:\/\/*.snarknews.info\/*",
                "http:\/\/opencup.ru\/*",
                "https:\/\/official.contest.yandex.ru\/*",
                "https:\/\/official.contest.yandex.com\/*",
                "https:\/\/contest.yandex.ru\/*",
                "https:\/\/contest.yandex.com\/*",
                "http:\/\/*.mipt.ru\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "include.js",
            "third_party\/jquery.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Contest Standings",
        "default_icon": "static\/icon16.png",
        "default_popup": "popup.html"
    }
}