CF Tracker

Find time invested in a particular problem during a contest or otherwise.

Co to jest CF Tracker?

CF Tracker to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Find time invested in a particular problem during a contest or otherwise.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia CF Tracker

Pobierz pliki rozszerzeń CF Tracker 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

                        Find time spent on a particular problem on codeforces.com. It helps in increasing speed which is vital for any competitive programmer.                    

Podstawowe informacje o rozszerzeniu

Nazwa CF Tracker CF Tracker
ID hadiffebpglmdnknojeoelfgmjleiecc
Oficjalny URL https://chromewebstore.google.com/detail/cf-tracker/hadiffebpglmdnknojeoelfgmjleiecc
Opis Find time invested in a particular problem during a contest or otherwise.
Rozmiar pliku 10.88 KB
Liczba instalacji 1,914
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2022-02-14
Data Publikacji 2022-02-10
Ocena 5.00/5 Łącznie 5 Oceny
Deweloper Unknown
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "CF Tracker",
    "description": "Find time invested in a particular problem during a contest or otherwise.",
    "version": "1.0.1",
    "icons": {
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/codeforces.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}