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

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

擴展使用說明

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