Timus Charts
Adds charts to Timus Online Judge profiles
Co to jest Timus Charts?
Timus Charts to rozszerzenie Chrome opracowane przez Alexander Borzunov, a jego główną funkcją jest „Adds charts to Timus Online Judge profiles”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Timus Charts
Pobierz pliki rozszerzeń Timus Charts w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Timus Charts |
ID | jholigcfjhipjahcjoccgkfjikkcekki |
Oficjalny URL | https://chromewebstore.google.com/detail/timus-charts/jholigcfjhipjahcjoccgkfjikkcekki |
Opis | Adds charts to Timus Online Judge profiles |
Rozmiar pliku | 95.02 KB |
Liczba instalacji | 262 |
Aktualna Wersja | 1.6 |
Ostatnia Aktualizacja | 2019-01-05 |
Data Publikacji | 2019-01-04 |
Ocena | 4.50/5 Łącznie 8 Oceny |
Deweloper | Alexander Borzunov |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/borzunov/timus-charts |
Adres URL Strony Pomocy | https://github.com/borzunov/timus-charts/issues |
Obsługiwane Języki | 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" } ] } |