USACO Results Analytics
Analyzes USACO contest results. Draws a few diagrams based on the data.
ما هو USACO Results Analytics؟
USACO Results Analytics هو إضافة Chrome تم تطويرها بواسطة Aliaksandr Kazlou، والميزة الرئيسية لها هي "Analyzes USACO contest results. Draws a few diagrams based on the data.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة USACO Results Analytics
قم بتنزيل ملفات الامتداد USACO Results Analytics بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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" } } |