Leetcode Shortcuts
LeetCode Shortcuts is a Chrome extension to improve your L.C. Coding Experiences!!!
Leetcode Shortcuts क्या है?
Leetcode Shortcuts Vicky Jha द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "LeetCode Shortcuts is a Chrome extension to improve your L.C. Coding Experiences!!!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Leetcode Shortcuts एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
In coding Competition we have less time, and we don't want to waste it playing with mouse. Hence this is an extension which allows to use keyboard shortcuts for LeetCode Website (leetcode.com) and thus completely minimising mouse work while Coding. This includes the following shortcuts: - Code Submit - Run Code - Toggle LeetCode Console - Open LeetCode's Console and Copy all Example test cases inside console - Switching between LeetCode's console elements when LeetCode console is open i.e. between "TestCase", "Run Code Result", "Debugger" This Shortcuts works perfectly on LeetCode Website(https://leetcode.com/*) every Problem solving page i.e. for practice problems, Contests, all elements of Explore Section of LeetCode, Assessment, etc. In short the benefits of using keyboard shortcuts are: 1. Efficient and time-saving 2. Multi-tasking 3. Increases Productivity
एक्सटेंशन की मूल जानकारी
नाम | Leetcode Shortcuts |
ID | gnfgpckgnjfpifajcmmkegajbnmpdagb |
आधिकारिक URL | https://chromewebstore.google.com/detail/leetcode-shortcuts/gnfgpckgnjfpifajcmmkegajbnmpdagb |
विवरण | LeetCode Shortcuts is a Chrome extension to improve your L.C. Coding Experiences!!! |
फ़ाइल का आकार | 246 KB |
स्थापना संख्या | 709 |
वर्तमान संस्करण | 0.0.0.4 |
अंतिम अपडेट | 2022-05-01 |
प्रकाशन तिथि | 2021-05-26 |
रेटिंग | 5.00/5 कुल 7 रेटिंग्स |
डेवलपर | Vicky Jha |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Leetcode Shortcuts", "version": "0.0.0.4", "description": "LeetCode Shortcuts is a Chrome extension to improve your L.C. Coding Experiences!!!", "permissions": [ "https:\/\/leetcode.com\/*" ], "browser_action": { "default_popup": "popup.html" }, "icons": { "16": "icons\/16.png", "32": "icons\/32.png", "128": "icons\/128.png", "192": "icons\/192.png", "512": "icons\/512.png" }, "content_scripts": [ { "matches": [ "https:\/\/leetcode.com\/*" ], "js": [ "leetcode.js" ], "run_at": "document_start" } ] } |