Timus Friends

Adds Codeforces-style friending to the Timus Online Judge.

Timus Friendsคืออะไร?

Timus Friends เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Slava Shklyaev และคุณลักษณะหลักของมันคือ "Adds Codeforces-style friending to the Timus Online Judge."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Timus Friends

ดาวน์โหลดไฟล์ส่วนขยาย Timus Friends ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                                            

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Timus Friends Timus Friends
ID fnldfcnfdacapllemlcdmmlijnpbcoal
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/timus-friends/fnldfcnfdacapllemlcdmmlijnpbcoal
คำอธิบาย Adds Codeforces-style friending to the Timus Online Judge.
ขนาดไฟล์ 29.14 KB
จำนวนการติดตั้ง 73
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2016-07-12
วันที่เผยแพร่ 2016-07-11
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Slava Shklyaev
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/slava-sh/timus-friends
ภาษาที่รองรับ en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "1.1.0",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/acm.timus.ru\/*"
            ],
            "js": [
                "scripts\/element_observer.js",
                "scripts\/locales.js",
                "scripts\/common.js",
                "scripts\/menu.js"
            ],
            "css": [
                "styles\/button.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/acm.timus.ru\/author.aspx?*"
            ],
            "js": [
                "scripts\/element_observer.js",
                "scripts\/locales.js",
                "scripts\/common.js",
                "scripts\/author.js",
                "scripts\/ranklist.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/acm.timus.ru\/ranklist.aspx*",
                "*:\/\/acm.timus.ru\/search.aspx*"
            ],
            "exclude_matches": [
                "*:\/\/acm.timus.ru\/ranklist.aspx?friends*"
            ],
            "js": [
                "scripts\/element_observer.js",
                "scripts\/locales.js",
                "scripts\/common.js",
                "scripts\/ranklist.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/acm.timus.ru\/ranklist.aspx?friends*"
            ],
            "js": [
                "scripts\/element_observer.js",
                "scripts\/locales.js",
                "scripts\/common.js",
                "scripts\/friends.js"
            ],
            "css": [
                "styles\/friends.css"
            ],
            "run_at": "document_start"
        }
    ]
}