Codeforces: Submission time in local timezone

View the time associated with your submissions in your local time zone

Co to jest Codeforces: Submission time in local timezone?

Codeforces: Submission time in local timezone to rozszerzenie Chrome opracowane przez manu-chroma, a jego główną funkcją jest „View the time associated with your submissions in your local time zone”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Codeforces: Submission time in local timezone

Pobierz pliki rozszerzeń Codeforces: Submission time in local timezone 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

                        In codeforces, the user sees submission times for their code submissions in MST (Moscow Standard Time). This extension, converts and displays the time in your local time zone.                    

Podstawowe informacje o rozszerzeniu

Nazwa Codeforces: Submission time in local timezone Codeforces: Submission time in local timezone
ID dfegjfgkamidfikgflhkdjgejoekblhl
Oficjalny URL https://chromewebstore.google.com/detail/codeforces-submission-tim/dfegjfgkamidfikgflhkdjgejoekblhl
Opis View the time associated with your submissions in your local time zone
Rozmiar pliku 64.1 KB
Liczba instalacji 33
Aktualna Wersja 0.3
Ostatnia Aktualizacja 2019-03-23
Data Publikacji 2019-03-23
Deweloper manu-chroma
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/manu-chroma/CF-Local-Time
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Codeforces: Submission time in local timezone",
    "version": "0.3",
    "description": "View the time associated with your submissions in your local time zone",
    "permissions": [
        "https:\/\/codeforces.com\/submissions\/*",
        "https:\/\/codeforces.com\/submissions\/*",
        "https:\/\/codeforces.com\/contest\/*\/my",
        "activeTab",
        "declarativeContent",
        "storage",
        "management"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/codeforces.com\/submissions\/*",
                "https:\/\/codeforces.com\/submissions\/*",
                "https:\/\/codeforces.com\/contest\/*\/my"
            ],
            "css": [],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "vendor\/hot-reload.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "*"
    ],
    "icons": {
        "16": "images\/icons8-timer-16.png",
        "32": "images\/icons8-timer-32.png",
        "48": "images\/icons8-timer-48.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icons8-timer-16.png",
            "32": "images\/icons8-timer-32.png",
            "48": "images\/icons8-timer-48.png"
        }
    },
    "manifest_version": 2
}