Leetcode Explained

Enhances Leetcode problems with solution code, video explanations, and GPT code analysis.

Leetcode Explained क्या है?

Leetcode Explained https://leetcodeapp.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enhances Leetcode problems with solution code, video explanations, and GPT code analysis."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Leetcode Explained एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Key Features 🚀 

1️⃣ Video Solutions: Adds top 5 youtube solution videos into each Leetcode problem.

2️⃣ Code Solutions : View solutions in Python, Java, C++, and Javascript.

3️⃣ Company Tags: Shows top 5 companies asking each Leetcode question.

4️⃣ Elo Ratings : Adds difficulty ratings to Leetcode contest problems (~1500 added).

5️⃣ Complexity Analysis : Gets time and space complexity of your code using GPT.

6️⃣ Code Generation :  Reviews your code against the Leetcode problem description & constraints, corrects errors, and returns the improved code using GPT.

7️⃣ Hard Mode : Hide Leetcode examples, difficulty, and more to simulate a real interview environment. Available through settings.
 

Tutorial 📚

1️⃣ For solution videos & code, open the "Solutions" tab of a Leetcode problem

2️⃣ For GPT features, login to ChatGPT in your browser and pin the extension


Privacy 🔒
Everything is stored locally in your browser. No API key needed for GPT functionality. Simply login to chat.openai.com in your browser.


Contribute 👨‍💻 
github.com/zubyj/leetcode-explained                    

एक्सटेंशन की मूल जानकारी

नाम Leetcode Explained Leetcode Explained
ID cofoinjfjcpgcjiinjhcpomcjoalijbe
आधिकारिक URL https://chromewebstore.google.com/detail/leetcode-explained/cofoinjfjcpgcjiinjhcpomcjoalijbe
विवरण Enhances Leetcode problems with solution code, video explanations, and GPT code analysis.
फ़ाइल का आकार 757 KB
स्थापना संख्या 7,000
वर्तमान संस्करण 2.2.2
अंतिम अपडेट 2024-02-05
प्रकाशन तिथि 2023-04-03
रेटिंग 4.13/5 कुल 15 रेटिंग्स
डेवलपर https://leetcodeapp.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://leetcodeapp.com/
सहायता पृष्ठ URL https://leetcodeapp.com/
गोपनीयता नीति पृष्ठ URL https://zubyj.github.io
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Leetcode Explained",
    "version": "2.2.2",
    "description": "Enhances Leetcode problems with solution code, video explanations, and GPT code analysis.",
    "icons": {
        "16": "src\/assets\/images\/logo\/icon-16.png",
        "32": "src\/assets\/images\/logo\/icon-32.png",
        "48": "src\/assets\/images\/logo\/icon-48.png",
        "128": "src\/assets\/images\/logo\/icon-128.png"
    },
    "action": {
        "default_popup": "src\/popup\/popup.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/chat.openai.com\/api\/auth\/session"
    ],
    "background": {
        "service_worker": "dist\/background\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "dist\/content-script\/get-gpt-access-token.js",
                "dist\/content-script\/get-user-code.js",
                "dist\/content-script\/update-solutions-tab.js",
                "dist\/content-script\/update-description-tab.js"
            ],
            "matches": [
                "https:\/\/leetcode.com\/problems\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "src\/assets\/images\/copy-icon.png",
                "src\/assets\/images\/check-icon.png",
                "src\/assets\/images\/languages\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}