Codeforces: Submission time in local timezone

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

ما هو Codeforces: Submission time in local timezone؟

Codeforces: Submission time in local timezone هو إضافة Chrome تم تطويرها بواسطة manu-chroma، والميزة الرئيسية لها هي "View the time associated with your submissions in your local time zone".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Codeforces: Submission time in local timezone

قم بتنزيل ملفات الامتداد Codeforces: Submission time in local timezone بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Codeforces: Submission time in local timezone Codeforces: Submission time in local timezone
ID dfegjfgkamidfikgflhkdjgejoekblhl
عنوان URL الرسمي https://chromewebstore.google.com/detail/codeforces-submission-tim/dfegjfgkamidfikgflhkdjgejoekblhl
الوصف View the time associated with your submissions in your local time zone
حجم الملف 64.1 KB
عدد التثبيتات 33
النسخة الحالية 0.3
آخر تحديث 2019-03-23
تاريخ النشر 2019-03-23
المطور manu-chroma
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/manu-chroma/CF-Local-Time
اللغات المدعومة 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
}