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文件

下載Leetcode Timer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}