Timus Charts
Adds charts to Timus Online Judge profiles
什麼是Timus Charts?
Timus Charts是由Alexander Borzunov開發的Chrome擴展程式,該擴展的主要功能是“Adds charts to Timus Online Judge profiles”。
擴展截圖
下載Timus Charts擴展crx文件
下載Timus Charts擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
The extension adds a chart of count of solved problems to Timus Online Judge's profiles and comparator. Features: * A chart of count of solved problems in profiles and during comparison * Adding more users to the chart, removing them, customizing legend colors * Caching profile data * Hiding the chart * (optional) Highlighting problems accepted in recent two months The extension is available for Chrome, Firefox (with Greasemonkey) and Opera.
擴展基本資訊
名稱 | Timus Charts |
ID | jholigcfjhipjahcjoccgkfjikkcekki |
官方網址 | https://chromewebstore.google.com/detail/timus-charts/jholigcfjhipjahcjoccgkfjikkcekki |
簡介 | Adds charts to Timus Online Judge profiles |
檔案大小 | 95.02 KB |
安裝次數 | 262 |
目前版本 | 1.6 |
更新時間 | 2019-01-05 |
上架時間 | 2019-01-04 |
評分 | 4.50/5 共 8 次評分 |
開發者 | Alexander Borzunov |
付費類型 | free |
擴展官網 | https://github.com/borzunov/timus-charts |
說明頁面URL | https://github.com/borzunov/timus-charts/issues |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Timus Charts", "description": "Adds charts to Timus Online Judge profiles", "author": "Alexander Borzunov", "version": "1.6", "icons": { "128": "icon.png" }, "permissions": [ "http:\/\/acm.timus.ru\/author.aspx*", "http:\/\/acm-judge.urfu.ru\/author.aspx*", "http:\/\/timus.online\/author.aspx*", "https:\/\/acm.timus.ru\/author.aspx*", "https:\/\/acm-judge.urfu.ru\/author.aspx*", "https:\/\/timus.online\/author.aspx*" ], "content_scripts": [ { "js": [ "jquery.min.js", "jquery.jqplot.min.js", "jqplot.dateAxisRenderer.min.js", "timus.user.js" ], "matches": [ "http:\/\/acm.timus.ru\/author.aspx*", "http:\/\/acm-judge.urfu.ru\/author.aspx*", "http:\/\/timus.online\/author.aspx*", "https:\/\/acm.timus.ru\/author.aspx*", "https:\/\/acm-judge.urfu.ru\/author.aspx*", "https:\/\/timus.online\/author.aspx*" ], "run_at": "document_start" } ] } |