USACO Results Analytics
Analyzes USACO contest results. Draws a few diagrams based on the data.
O que é USACO Results Analytics?
USACO Results Analytics é uma extensão do Chrome desenvolvida por Aliaksandr Kazlou, e sua principal característica é "Analyzes USACO contest results. Draws a few diagrams based on the data.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão USACO Results Analytics
Baixe arquivos de extensão USACO Results Analytics no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | USACO Results Analytics |
ID | mflmefpieehbdojipdlpdclcpjheljea |
URL Oficial | https://chromewebstore.google.com/detail/usaco-results-analytics/mflmefpieehbdojipdlpdclcpjheljea |
Descrição | Analyzes USACO contest results. Draws a few diagrams based on the data. |
Tamanho do Arquivo | 289 KB |
Contagem de Instalações | 16 |
Versão Atual | 1.0.1 |
Última Atualização | 2014-02-08 |
Data de Publicação | 2014-02-08 |
Desenvolvedor | Aliaksandr Kazlou |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |