LeetCode Timer
LeetCode Timer is a Chrome extension for timing LeetCode problems
LeetCode Timer क्या है?
LeetCode Timer briankosw द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "LeetCode Timer is a Chrome extension for timing LeetCode problems"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में LeetCode Timer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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\/*" ] } ] } |