LeetCode Buddy
An extension that makes you more productive while you LeetCode.
LeetCode Buddy क्या है?
LeetCode Buddy https://tash-had.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension that makes you more productive while you LeetCode."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में LeetCode Buddy एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
NEW: Added ability to add code blocks in notes. Previous Updates: You can now hit (Ctrl/Cmd) + S to save your notes. Customize your LeetCode experience! This extension allows you to choose exactly what you want to see or hide when you're solving LeetCode problems. You can show/hide things like: - Completion Status* - Acceptance Rate - Difficulty - Locked Questions - Announcements - Problem Search Result Count - Solved Problem Difficulty Counts This extension also adds a Notes panel to the LeetCode problem page. So you can write notes as you write up a solution and browse all your notes at a later time! * The completion status will also keep a local record of the questions you complete while the extension is installed. This way, if you've come back to LeetCode after a long time or want to start fresh, you can clear all the completion data and start fresh!
एक्सटेंशन की मूल जानकारी
नाम | LeetCode Buddy |
ID | daeplkffffccbejlgacmhpebchpjbfjg |
आधिकारिक URL | https://chromewebstore.google.com/detail/leetcode-buddy/daeplkffffccbejlgacmhpebchpjbfjg |
विवरण | An extension that makes you more productive while you LeetCode. |
फ़ाइल का आकार | 201 KB |
स्थापना संख्या | 1,174 |
वर्तमान संस्करण | 1.4 |
अंतिम अपडेट | 2020-11-03 |
प्रकाशन तिथि | 2020-06-11 |
रेटिंग | 3.50/5 कुल 4 रेटिंग्स |
डेवलपर | https://tash-had.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://tash-had.github.io/leetcode-buddy/ |
सहायता पृष्ठ URL | https://tash-had.com/#contact |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "LeetCode Buddy", "description": "An extension that makes you more productive while you LeetCode.", "version": "1.4", "author": "Tash-had Saqif", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/leetcode.com\/*" ], "css": [ "css\/leetcode.css" ], "js": [ "js\/common.js", "js\/leetcode.js" ], "run_at": "document_start", "all_frames": true } ], "background": { "scripts": [ "js\/background.js" ] }, "permissions": [ "tabs", "https:\/\/leetcode.com\/*", "activeTab", "storage" ], "icons": { "16": "img\/icon-16.png", "48": "img\/icon-48.png", "128": "img\/icon.png" }, "browser_action": { "default_title": "LeetCode Buddy", "default_icon": "img\/icon-disabled.png", "default_popup": "html\/config.html" }, "web_accessible_resources": [ "js\/libs\/jquery.1.8.3.min.js", "js\/libs\/notify.min.js", "js\/libs\/quill.min.js", "css\/libs\/quill.snow.min.css", "js\/notes.js" ] } |