Timus Charts

Adds charts to Timus Online Judge profiles

Timus Chartsคืออะไร?

Timus Charts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alexander Borzunov และคุณลักษณะหลักของมันคือ "Adds charts to Timus Online Judge profiles"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ 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 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"
        }
    ]
}