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