Timus Charts
Adds charts to Timus Online Judge profiles
Что такое Timus Charts?
Timus Charts - это расширение Chrome, разработанное Alexander Borzunov, и его основная функция - "Adds charts to Timus Online Judge profiles".
Снимки экрана расширения
Скачать файл CRX расширения Timus Charts
Скачайте файлы расширений 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 |
Официальный URL | 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" } ] } |