USACO Results Analytics

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

USACO Results Analytics là gì?

USACO Results Analytics là một tiện ích mở rộng Chrome được phát triển bởi Aliaksandr Kazlou, và tính năng chính của nó là "Analyzes USACO contest results. Draws a few diagrams based on the data.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng USACO Results Analytics

Tải xuống các tệp mở rộng USACO Results Analytics dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên USACO Results Analytics USACO Results Analytics
ID mflmefpieehbdojipdlpdclcpjheljea
URL Chính Thức https://chromewebstore.google.com/detail/usaco-results-analytics/mflmefpieehbdojipdlpdclcpjheljea
Mô tả Analyzes USACO contest results. Draws a few diagrams based on the data.
Kích Thước Tệp 289 KB
Số Lần Cài Đặt 16
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2014-02-08
Ngày Phát Hành 2014-02-08
Nhà Phát Triển Aliaksandr Kazlou
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}