LeetCode Video Soltuions(New Ui)
Watch Youtube video Solutions of Leetcode problems on the Leetcode page itself for free
LeetCode Video Soltuions(New Ui) क्या है?
LeetCode Video Soltuions(New Ui) mohammadshoeib00 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Watch Youtube video Solutions of Leetcode problems on the Leetcode page itself for free"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में LeetCode Video Soltuions(New Ui) एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
IMPORTANT NOTE: The extension is not working properly now due to recent changes in the LeetCode UI. I'll fix it as soon as I get time. Your cooperation will be helpful! Watch LeetCode Video Solutions on the Leetcode page itself for free Features: . Adds a Button on the problem page which shows the video solutions when clicked. . shows the the top 10 solutions of a problem from Youtube. . Increases productivity. LeetCode Video Solutions extension works with the NEW UI of Leetcode With this extension You don't need to search for a video solution on youtube u can see it on the leetcode page itself.say goodbye to getting distracted on Youtube while searching for solutions! The Videos are fetched from youtube and they're in all programming languages. Report any bugs or new features to the developer on LinkedIn(https://www.linkedin.com/in/mohammad-shoeib-55766a215/) Don't forget to leave a review in the Review tab :) if u liked my work and want to support me : https://www.buymeacoffee.com/mohammadshD
एक्सटेंशन की मूल जानकारी
नाम | LeetCode Video Soltuions(New Ui) |
ID | chddldabdgijaaemjmgjifjjfmfpeaio |
आधिकारिक URL | https://chromewebstore.google.com/detail/leetcode-video-soltuionsn/chddldabdgijaaemjmgjifjjfmfpeaio |
विवरण | Watch Youtube video Solutions of Leetcode problems on the Leetcode page itself for free |
फ़ाइल का आकार | 15.77 KB |
स्थापना संख्या | 633 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2023-07-30 |
प्रकाशन तिथि | 2023-05-26 |
रेटिंग | 4.00/5 कुल 3 रेटिंग्स |
डेवलपर | mohammadshoeib00 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.linkedin.com/in/mohammad-shoeib-55766a215/ |
सहायता पृष्ठ URL | https://www.linkedin.com/in/mohammad-shoeib-55766a215/ |
गोपनीयता नीति पृष्ठ URL | https://www.freeprivacypolicy.com/live/9e04bca6-8635-43fb-9633-0f2232febb6c |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "LeetCode Video Soltuions(New Ui)", "version": "1.0.0", "description": "Watch Youtube video Solutions of Leetcode problems on the Leetcode page itself for free", "permissions": [ "tabs", "background" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/leetcode.com\/problems\/*" ], "js": [ "App.js" ] } ], "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/c.png", "48": "images\/c1.png", "128": "images\/c2.png" }, "default_title": " my extension" } } |