Leetcode Timer

Easily time your leetcode practise sessions with automatic time setting based on difficulty

Leetcode Timer란 무엇입니까?

Leetcode Timer은(는) Samarth Tambad에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily time your leetcode practise sessions with automatic time setting based on difficulty"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Simple and easy to use companion timer for leetcode.com.

This is a tool I built to improve my own productivity. Hope it helps spike your productivity too.

Features:
1. Set time for difficulty levels
2. Automatically detects difficulty and sets the time accordingly
3. Timer embedded inside leetcode page. No need to navigate anywhere.
4. Alert when time over

Usage:
1. Navigate to options page of extension
2. Modify default time for Easy, Medium and Hard problems.
3. Click on icon button to start timer.

Open Source:
This is an open source project. Source can be found at https://github.com/samarthtambad/leetcode-timer. Feel free to contribute to the project by creating a pull request on GitHub.                    

확장 프로그램 기본 정보

이름 Leetcode Timer Leetcode Timer
ID hihcjkhhlbmckhhnjamfomegbnlffcni
공식 URL https://chromewebstore.google.com/detail/leetcode-timer/hihcjkhhlbmckhhnjamfomegbnlffcni
설명 Easily time your leetcode practise sessions with automatic time setting based on difficulty
파일 크기 198 KB
설치 횟수 4,200
현재 버전 1.0.0
최근 업데이트 2020-06-15
출시 날짜 2020-06-15
평점 3.67/5 총 9 개의 평점
개발자 Samarth Tambad
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Leetcode Timer",
    "description": "Easily time your leetcode practise sessions with automatic time setting based on difficulty",
    "version": "1.0.0",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/icon_play_48.png",
        "128": "icons\/icon_play_128.png"
    },
    "browser_action": {
        "default_title": "leetcode-timer",
        "default_icon": {
            "48": "icons\/icon_play_48.png",
            "128": "icons\/icon_play_128.png"
        }
    },
    "background": {
        "scripts": [
            "jquery.js",
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/leetcode.com\/problems\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "jquery.js",
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs"
    ]
}