LeetCode Video Soltuions(New Ui)
Watch Youtube video Solutions of Leetcode problems on the Leetcode page itself for free
Qu'est-ce que LeetCode Video Soltuions(New Ui) ?
LeetCode Video Soltuions(New Ui) est une extension Chrome développée par mohammadshoeib00, et sa fonction principale est "Watch Youtube video Solutions of Leetcode problems on the Leetcode page itself for free".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension LeetCode Video Soltuions(New Ui)
Téléchargez les fichiers d'extension LeetCode Video Soltuions(New Ui) au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | LeetCode Video Soltuions(New Ui) |
ID | chddldabdgijaaemjmgjifjjfmfpeaio |
URL Officiel | https://chromewebstore.google.com/detail/leetcode-video-soltuionsn/chddldabdgijaaemjmgjifjjfmfpeaio |
Description | Watch Youtube video Solutions of Leetcode problems on the Leetcode page itself for free |
Taille du Fichier | 15.77 KB |
Nombre d'Installations | 633 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2023-07-30 |
Date de Publication | 2023-05-26 |
Évaluation | 4.00/5 Total 3 Évaluations |
Développeur | mohammadshoeib00 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.linkedin.com/in/mohammad-shoeib-55766a215/ |
URL de la Page d'Aide | https://www.linkedin.com/in/mohammad-shoeib-55766a215/ |
URL de la Page de Politique de Confidentialité | https://www.freeprivacypolicy.com/live/9e04bca6-8635-43fb-9633-0f2232febb6c |
Langues Prises en Charge | 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" } } |