Timus Friends

Adds Codeforces-style friending to the Timus Online Judge.

Apa itu Timus Friends?

Timus Friends adalah ekstensi Chrome yang dikembangkan oleh Slava Shklyaev, dan fitur utamanya adalah "Adds Codeforces-style friending to the Timus Online Judge.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Timus Friends

Unduh file ekstensi Timus Friends dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                                            

Informasi Dasar Ekstensi

Nama Timus Friends Timus Friends
ID fnldfcnfdacapllemlcdmmlijnpbcoal
URL Resmi https://chromewebstore.google.com/detail/timus-friends/fnldfcnfdacapllemlcdmmlijnpbcoal
Deskripsi Adds Codeforces-style friending to the Timus Online Judge.
Ukuran File 29.14 KB
Jumlah Instalasi 73
Versi Saat Ini 1.1.0
Terakhir Diperbarui 2016-07-12
Tanggal Publikasi 2016-07-11
Penilaian 5.00/5 Total 5 Penilaian
Pengembang Slava Shklyaev
Tipe Pembayaran free
Situs Ekstensi https://github.com/slava-sh/timus-friends
Bahasa yang Didukung 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"
        }
    ]
}