USACO Results Analytics

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

USACO Results Analytics क्या है?

USACO Results Analytics Aliaksandr Kazlou द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Analyzes USACO contest results. Draws a few diagrams based on the data."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में USACO Results Analytics एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}