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) είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον mohammadshoeib00, και η κύρια λειτουργία του είναι "Watch Youtube video Solutions of Leetcode problems on the Leetcode page itself for free".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης LeetCode Video Soltuions(New Ui)

Λήψη αρχείων επέκτασης LeetCode Video Soltuions(New Ui) σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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) 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"
    }
}