LeetCode Timer
LeetCode Timer is a Chrome extension for timing LeetCode problems
Was ist LeetCode Timer?
LeetCode Timer ist eine Chrome-Erweiterung, die von briankosw entwickelt wurde, und ihr Hauptmerkmal ist "LeetCode Timer is a Chrome extension for timing LeetCode problems".
Erweiterungsscreenshots
LeetCode Timer-Erweiterungs-CRX-Datei herunterladen
Laden Sie LeetCode Timer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | LeetCode Timer |
ID | djgmechpkngjklelhkninhhhibghmhkj |
Offizielle URL | https://chromewebstore.google.com/detail/leetcode-timer/djgmechpkngjklelhkninhhhibghmhkj |
Beschreibung | LeetCode Timer is a Chrome extension for timing LeetCode problems |
Dateigröße | 548 KB |
Installationsanzahl | 57 |
Aktuelle Version | 0.2.1 |
Letztes Update | 2022-02-23 |
Veröffentlichungsdatum | 2022-02-20 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | briankosw |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/briankosw/leetcode-timer |
Unterstützte Sprachen | 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\/*" ] } ] } |