LeetCode Timer

LeetCode Timer is a Chrome extension for timing LeetCode problems

Что такое LeetCode Timer?

LeetCode Timer - это расширение Chrome, разработанное briankosw, и его основная функция - "LeetCode Timer is a Chrome extension for timing LeetCode problems".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения LeetCode Timer

Скачайте файлы расширений 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\/*"
            ]
        }
    ]
}