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은(는) manu-chroma에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "View the time associated with your submissions in your local time zone"입니다.

확장 프로그램 스크린샷

screenshot

Codeforces: Submission time in local timezone 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
}