Timus Friends
Adds Codeforces-style friending to the Timus Online Judge.
Co to jest Timus Friends?
Timus Friends to rozszerzenie Chrome opracowane przez Slava Shklyaev, a jego główną funkcją jest „Adds Codeforces-style friending to the Timus Online Judge.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Timus Friends
Pobierz pliki rozszerzeń Timus Friends w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
                                             Podstawowe informacje o rozszerzeniu
| Nazwa |   |  
| ID | fnldfcnfdacapllemlcdmmlijnpbcoal | 
| Oficjalny URL | https://chromewebstore.google.com/detail/timus-friends/fnldfcnfdacapllemlcdmmlijnpbcoal | 
| Opis | Adds Codeforces-style friending to the Timus Online Judge. | 
| Rozmiar pliku | 29.14 KB | 
| Liczba instalacji | 73 | 
| Aktualna Wersja | 1.1.0 | 
| Ostatnia Aktualizacja | 2016-07-12 | 
| Data Publikacji | 2016-07-11 | 
| Ocena | 5.00/5 Łącznie 5 Oceny | 
| Deweloper | Slava Shklyaev | 
| Typ Płatności | free | 
| Strona Rozszerzenia | https://github.com/slava-sh/timus-friends | 
| Obsługiwane Języki | 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"
        }
    ]
}  |  |