Timus Charts

Adds charts to Timus Online Judge profiles

Timus Charts란 무엇입니까?

Timus Charts은(는) Alexander Borzunov에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds charts to Timus Online Judge profiles"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Timus Charts 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The extension adds a chart of count of solved problems to Timus Online Judge's profiles and comparator.

Features:

* A chart of count of solved problems in profiles and during comparison

* Adding more users to the chart, removing them, customizing legend colors

* Caching profile data

* Hiding the chart

* (optional) Highlighting problems accepted in recent two months

The extension is available for Chrome, Firefox (with Greasemonkey) and Opera.                    

확장 프로그램 기본 정보

이름 Timus Charts Timus Charts
ID jholigcfjhipjahcjoccgkfjikkcekki
공식 URL https://chromewebstore.google.com/detail/timus-charts/jholigcfjhipjahcjoccgkfjikkcekki
설명 Adds charts to Timus Online Judge profiles
파일 크기 95.02 KB
설치 횟수 262
현재 버전 1.6
최근 업데이트 2019-01-05
출시 날짜 2019-01-04
평점 4.50/5 총 8 개의 평점
개발자 Alexander Borzunov
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/borzunov/timus-charts
도움말 페이지 URL https://github.com/borzunov/timus-charts/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Timus Charts",
    "description": "Adds charts to Timus Online Judge profiles",
    "author": "Alexander Borzunov",
    "version": "1.6",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "http:\/\/acm.timus.ru\/author.aspx*",
        "http:\/\/acm-judge.urfu.ru\/author.aspx*",
        "http:\/\/timus.online\/author.aspx*",
        "https:\/\/acm.timus.ru\/author.aspx*",
        "https:\/\/acm-judge.urfu.ru\/author.aspx*",
        "https:\/\/timus.online\/author.aspx*"
    ],
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "jquery.jqplot.min.js",
                "jqplot.dateAxisRenderer.min.js",
                "timus.user.js"
            ],
            "matches": [
                "http:\/\/acm.timus.ru\/author.aspx*",
                "http:\/\/acm-judge.urfu.ru\/author.aspx*",
                "http:\/\/timus.online\/author.aspx*",
                "https:\/\/acm.timus.ru\/author.aspx*",
                "https:\/\/acm-judge.urfu.ru\/author.aspx*",
                "https:\/\/timus.online\/author.aspx*"
            ],
            "run_at": "document_start"
        }
    ]
}