Codeforces Enhancer

Makes Codeforces better: multiple ratings graph, colorizes standings, adds "Hide/Show solved problems" link

Co to jest Codeforces Enhancer?

Codeforces Enhancer to rozszerzenie Chrome opracowane przez alexander.agulenko, a jego główną funkcją jest „Makes Codeforces better: multiple ratings graph, colorizes standings, adds "Hide/Show solved problems" link”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Codeforces Enhancer

Pobierz pliki rozszerzeń Codeforces Enhancer 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

                        Chrome extension that makes Codeforces better: supports multiple ratings graph, colorizes standings by used programming languages, adds "Hide/Show solved problems" link to Problemset page                    

Podstawowe informacje o rozszerzeniu

Nazwa Codeforces Enhancer Codeforces Enhancer
ID ocmandagmgmkcplckgnfgaokpgkfenmp
Oficjalny URL https://chromewebstore.google.com/detail/codeforces-enhancer/ocmandagmgmkcplckgnfgaokpgkfenmp
Opis Makes Codeforces better: multiple ratings graph, colorizes standings, adds "Hide/Show solved problems" link
Rozmiar pliku 25.12 KB
Liczba instalacji 13,461
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2020-07-23
Data Publikacji 2015-07-27
Ocena 4.40/5 Łącznie 35 Oceny
Deweloper alexander.agulenko
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://codeforces.com/profile/agul
Adres URL Strony Pomocy https://github.com/agul/cf-enhancer
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "options.js",
                "multiGraph.js"
            ],
            "matches": [
                "https:\/\/codeforces.com\/profile\/*",
                "https:\/\/www.codeforces.com\/profile\/*"
            ],
            "run_at": "document_idle"
        },
        {
            "all_frames": false,
            "js": [
                "options.js",
                "colorizeStandings.js"
            ],
            "matches": [
                "https:\/\/codeforces.com\/contest\/*\/standings*",
                "https:\/\/www.codeforces.com\/contest\/*\/standings*",
                "https:\/\/www.codeforces.com\/contest\/*\/room\/*",
                "https:\/\/codeforces.com\/contest\/*\/room\/*",
                "https:\/\/www.codeforces.com\/gym\/*\/standings*",
                "https:\/\/codeforces.com\/gym\/*\/standings*",
                "https:\/\/www.codeforces.com\/spectator\/*\/standings*",
                "https:\/\/codeforces.com\/spectator\/*\/standings*"
            ],
            "run_at": "document_idle"
        },
        {
            "all_frames": false,
            "js": [
                "options.js",
                "hideSolved.js"
            ],
            "matches": [
                "https:\/\/codeforces.com\/problemset",
                "https:\/\/www.codeforces.com\/problemset",
                "https:\/\/www.codeforces.com\/problemset\/page\/*",
                "https:\/\/codeforces.com\/problemset\/page\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "description": "Makes Codeforces better: multiple ratings graph, colorizes standings, adds \"Hide\/Show solved problems\" link",
    "icons": {
        "16": "logo_16x16.png",
        "48": "logo_48x48.png",
        "128": "logo_128x128.png"
    },
    "manifest_version": 2,
    "name": "Codeforces Enhancer",
    "short_name": "CF Enhancer",
    "permissions": [
        "storage"
    ],
    "version": "1.2",
    "options_page": "options_page.html",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}