Codeforces: Submission time in local timezone

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

Apa itu Codeforces: Submission time in local timezone?

Codeforces: Submission time in local timezone adalah ekstensi Chrome yang dikembangkan oleh manu-chroma, dan fitur utamanya adalah "View the time associated with your submissions in your local time zone".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Codeforces: Submission time in local timezone

Unduh file ekstensi Codeforces: Submission time in local timezone dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Codeforces: Submission time in local timezone Codeforces: Submission time in local timezone
ID dfegjfgkamidfikgflhkdjgejoekblhl
URL Resmi https://chromewebstore.google.com/detail/codeforces-submission-tim/dfegjfgkamidfikgflhkdjgejoekblhl
Deskripsi View the time associated with your submissions in your local time zone
Ukuran File 64.1 KB
Jumlah Instalasi 33
Versi Saat Ini 0.3
Terakhir Diperbarui 2019-03-23
Tanggal Publikasi 2019-03-23
Pengembang manu-chroma
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/manu-chroma/CF-Local-Time
Bahasa yang Didukung 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
}