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.”。
扩展截图
下载USACO Results Analytics扩展crx文件
下载USACO Results Analytics扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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" } } |