Timus Charts

Adds charts to Timus Online Judge profiles

Co je Timus Charts?

Timus Charts je rozšíření Chrome vyvinuté Alexander Borzunov, a jeho hlavní funkcí je „Adds charts to Timus Online Judge profiles“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Timus Charts

Stáhněte si soubory rozšíření Timus Charts ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Timus Charts Timus Charts
ID jholigcfjhipjahcjoccgkfjikkcekki
Oficiální URL https://chromewebstore.google.com/detail/timus-charts/jholigcfjhipjahcjoccgkfjikkcekki
Popis Adds charts to Timus Online Judge profiles
Velikost souboru 95.02 KB
Počet instalací 262
Aktuální Verze 1.6
Poslední Aktualizace 2019-01-05
Datum Vydání 2019-01-04
Hodnocení 4.50/5 Celkem 8 Hodnocení
Vývojář Alexander Borzunov
Typ Platby free
Webové stránky Rozšíření https://github.com/borzunov/timus-charts
URL Stránky Nápovědy https://github.com/borzunov/timus-charts/issues
Podporované Jazyky 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"
        }
    ]
}