USACO Results Analytics

Analyzes USACO contest results. Draws a few diagrams based on the data.

USACO Results Analytics란 무엇입니까?

USACO Results Analytics은(는) Aliaksandr Kazlou에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Analyzes USACO contest results. Draws a few diagrams based on the data."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

USACO Results Analytics 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension collects the data from the USACO contest results page, and builds nice graphs to have better visibility about the participants, countries and scores.

Uses d3.js and nvd3.js libraries to do the drawing.

How to use: just go to USACO contest results page, for example, http://usaco.org/current/data/jan14_gold_results.html, and click the icon in the bar on top.                    

확장 프로그램 기본 정보

이름 USACO Results Analytics USACO Results Analytics
ID mflmefpieehbdojipdlpdclcpjheljea
공식 URL https://chromewebstore.google.com/detail/usaco-results-analytics/mflmefpieehbdojipdlpdclcpjheljea
설명 Analyzes USACO contest results. Draws a few diagrams based on the data.
파일 크기 289 KB
설치 횟수 16
현재 버전 1.0.1
최근 업데이트 2014-02-08
출시 날짜 2014-02-08
개발자 Aliaksandr Kazlou
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "USACO Results Analytics",
    "short_name": "USACO Results Analytics",
    "description": "Analyzes USACO contest results. Draws a few diagrams based on the data.",
    "version": "1.0.1",
    "icons": {
        "16": "icons\/icon16x16.png",
        "48": "icons\/icon48x48.png",
        "128": "icons\/icon128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/usaco.org\/current\/data\/*",
                "http:\/\/www.usaco.org\/current\/data\/*"
            ],
            "js": [
                "js\/jquery-2.1.0.min.js",
                "contentscript.js"
            ]
        }
    ],
    "author": "Aliaksandr Kazlou",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "19": "icons\/icon19x19.png",
            "38": "icons\/icon38x38.png"
        },
        "default_title": "USACO Results Analytics",
        "default_popup": "popup.html"
    }
}