Timus Friends
Adds Codeforces-style friending to the Timus Online Judge.
Hvad er Timus Friends?
Timus Friends er en Chrome-udvidelse udviklet af Slava Shklyaev, og dens hovedfunktion er "Adds Codeforces-style friending to the Timus Online Judge.".
Udvidelsesskærmbilleder
Download Timus Friends-udvidelses-CRX-fil
Download Timus Friends-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
                                             Grundlæggende oplysninger om udvidelsen
| Navn |   |  
| ID | fnldfcnfdacapllemlcdmmlijnpbcoal | 
| Officiel URL | https://chromewebstore.google.com/detail/timus-friends/fnldfcnfdacapllemlcdmmlijnpbcoal | 
| Beskrivelse | Adds Codeforces-style friending to the Timus Online Judge. | 
| Filstørrelse | 29.14 KB | 
| Antal Installationer | 73 | 
| Nuværende Version | 1.1.0 | 
| Senest Opdateret | 2016-07-12 | 
| Udgivelsesdato | 2016-07-11 | 
| Bedømmelse | 5.00/5 Samlet 5 Bedømmelser | 
| Udvikler | Slava Shklyaev | 
| Betalingsmetode | free | 
| Udvidelseswebsted | https://github.com/slava-sh/timus-friends | 
| Understøttede Sprog | 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"
        }
    ]
}  |  |