Timus Friends

Adds Codeforces-style friending to the Timus Online Judge.

Timus Friends क्या है?

Timus Friends Slava Shklyaev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds Codeforces-style friending to the Timus Online Judge."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Timus Friends एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                                            

एक्सटेंशन की मूल जानकारी

नाम 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"
        }
    ]
}