LeetCode Reminder
Reminder for leetcode practice.
LeetCode Reminder क्या है?
LeetCode Reminder Zich द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Reminder for leetcode practice."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में LeetCode Reminder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Practicing LeetCode for tech-job interviews? Use this reminder for constant reminders to review questions that you have previously done! The more you practice the better you become, and we are here to help you ace your next technical interview! After downloading the extension, whenever you attempt a leetcode question, the question will automatically be added to storage for later review. You can check back at the extension by clicking it to see the question suggested for review. Happy LeetCode grind, hope this helps!
एक्सटेंशन की मूल जानकारी
नाम | LeetCode Reminder |
ID | cefbdpiapcpjjjdghhofmnfcpgdhcpec |
आधिकारिक URL | https://chromewebstore.google.com/detail/leetcode-reminder/cefbdpiapcpjjjdghhofmnfcpgdhcpec |
विवरण | Reminder for leetcode practice. |
फ़ाइल का आकार | 392 KB |
स्थापना संख्या | 866 |
वर्तमान संस्करण | 1.0.2 |
अंतिम अपडेट | 2020-05-25 |
प्रकाशन तिथि | 2020-05-24 |
डेवलपर | Zich |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "LeetCode Reminder", "version": "1.0.2", "description": "Reminder for leetcode practice.", "permissions": [ "storage", "http:\/\/leetcode.com\/*", "http:\/\/worldclockapi.com\/api\/json\/utc\/now" ], "browser_action": { "default_popup": "popup.html", "default_icon": "128x128lcicon.png" }, "background": { "scripts": [ "background.js", "jquery-3.4.1.js" ], "persistent": false }, "icons": { "16": "128x128lcicon.png", "48": "128x128lcicon.png", "128": "128x128lcicon.png" }, "content_scripts": [ { "matches": [ "https:\/\/leetcode.com\/*" ], "js": [ "jquery-3.4.1.js", "contents.js" ] } ], "manifest_version": 2 } |