LeetCode Timer

LeetCode Timer is a Chrome extension for timing LeetCode problems

LeetCode Timer란 무엇입니까?

LeetCode Timer은(는) briankosw에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "LeetCode Timer is a Chrome extension for timing LeetCode problems"입니다.

확장 프로그램 스크린샷

screenshot

LeetCode Timer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        LeetCode Timer is an extension for timing LeetCode Problems. Whether you're practicing time management while solving problems or you simply want to understand how long you're taking, LeetCode Timer provides an easy way to time yourself - no more going back and forth between your phone's timer and your problem!

Features:
The extension will embed a stopwatch, right next to the Run Code and Submit buttons, into any LeetCode problem you're solving.

The following are some of the features that will be added soon™:
• ⏱ Switch between timer mode (count down) and stopwatch mode (count up)
• ⏳ Set time limits - customizable based on problem difficulty - for timer mode
• 💾 Save time spent when submission is accepted                    

확장 프로그램 기본 정보

이름 LeetCode Timer LeetCode Timer
ID djgmechpkngjklelhkninhhhibghmhkj
공식 URL https://chromewebstore.google.com/detail/leetcode-timer/djgmechpkngjklelhkninhhhibghmhkj
설명 LeetCode Timer is a Chrome extension for timing LeetCode problems
파일 크기 548 KB
설치 횟수 57
현재 버전 0.2.1
최근 업데이트 2022-02-23
출시 날짜 2022-02-20
평점 5.00/5 총 2 개의 평점
개발자 briankosw
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/briankosw/leetcode-timer
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "LeetCode Timer",
    "description": "LeetCode Timer is a Chrome extension for timing LeetCode problems",
    "homepage_url": "https:\/\/github.com\/briankosw\/leetcode-timer",
    "version": "0.2.1",
    "icons": {
        "128": "dist\/images\/lct.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/leetcode.com\/problems\/*"
            ],
            "js": [
                "dist\/browser-polyfill.js",
                "dist\/content_script.js"
            ],
            "css": [
                "dist\/css\/styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/images\/dark-timer.svg",
                "dist\/images\/option.svg",
                "dist\/images\/reset.svg"
            ],
            "matches": [
                "https:\/\/leetcode.com\/*"
            ]
        }
    ]
}