LeetCode Timer

LeetCode Timer is a Chrome extension for timing LeetCode problems

Qu'est-ce que LeetCode Timer ?

LeetCode Timer est une extension Chrome développée par briankosw, et sa fonction principale est "LeetCode Timer is a Chrome extension for timing LeetCode problems".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension LeetCode Timer

Téléchargez les fichiers d'extension LeetCode Timer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom LeetCode Timer LeetCode Timer
ID djgmechpkngjklelhkninhhhibghmhkj
URL Officiel https://chromewebstore.google.com/detail/leetcode-timer/djgmechpkngjklelhkninhhhibghmhkj
Description LeetCode Timer is a Chrome extension for timing LeetCode problems
Taille du Fichier 548 KB
Nombre d'Installations 57
Version Actuelle 0.2.1
Dernière Mise à Jour 2022-02-23
Date de Publication 2022-02-20
Évaluation 5.00/5 Total 2 Évaluations
Développeur briankosw
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/briankosw/leetcode-timer
Langues Prises en Charge 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\/*"
            ]
        }
    ]
}