Timus Charts

Adds charts to Timus Online Judge profiles

Vad är Timus Charts?

Timus Charts är en Chrome-tillägg utvecklad av Alexander Borzunov, och dess huvudfunktion är "Adds charts to Timus Online Judge profiles".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Timus Charts-förlängningens CRX-fil

Ladda ner Timus Charts-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Timus Charts Timus Charts
ID jholigcfjhipjahcjoccgkfjikkcekki
Officiell webbadress https://chromewebstore.google.com/detail/timus-charts/jholigcfjhipjahcjoccgkfjikkcekki
Beskrivning Adds charts to Timus Online Judge profiles
Filstorlek 95.02 KB
Antal Installationer 262
Aktuell Version 1.6
Senast Uppdaterad 2019-01-05
Publiceringsdatum 2019-01-04
Betyg 4.50/5 Totalt 8 Betyg
Utvecklare Alexander Borzunov
Betalningssätt free
Tilläggswebbplats https://github.com/borzunov/timus-charts
Hjälpsida URL https://github.com/borzunov/timus-charts/issues
Stödda Språk 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"
        }
    ]
}