LeetCodeGPT

Use GPT to help you solve leetcode problems.

LeetCodeGPT क्या है?

LeetCodeGPT saketh.kotamraju द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Use GPT to help you solve leetcode problems."।

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

screenshot
screenshot
screenshot

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

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

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

                        What is LeetCodeGPT? A free Chrome extension that uses GPT as a personal chatbot assistant for helping you solve leetcode problems. You can ask it questions about any leetcode problem you are solving.

Why LeetCodeGPT? The coding interview is the most important part of the internship/job process, and solving leetcode problems is the best way to prepare for that. LeetCodeGPT has complete access to any leetcode problem you are solving and is explicitly designed for solving leetcode problems. LeetCodeGPT automates the process of feeding information about a leetcode problem into GPT, so you can focus on solving your leetcode problem and asking LeetCodeGPT any questions you have. 

How does LeetCodeGPT work? After installing the extension and launching LeetCodeGPT, simply navigate to a leetcode problem, open the popup, and ask any question you have about the problem. Your conversation is automatically saved, you can clear it, view or copy code produced by GPT, and ask it any question about the leetcode problem you are solving.

Why did I build LeetCodeGPT? The coding interview is arguably the most important part of your interview process, given you get the interview first. Succeeding in the interview is not easy, and that's what LeetCodeGPT is supposed to do: improve your coding skills by helping you solve more leetcode problems!                    

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

नाम LeetCodeGPT LeetCodeGPT
ID ameojemafhabdpggjnpeehgjlegkmpbj
आधिकारिक URL https://chromewebstore.google.com/detail/leetcodegpt/ameojemafhabdpggjnpeehgjlegkmpbj
विवरण Use GPT to help you solve leetcode problems.
फ़ाइल का आकार 572 KB
स्थापना संख्या 284
वर्तमान संस्करण 1.03
अंतिम अपडेट 2023-07-09
प्रकाशन तिथि 2023-06-28
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर saketh.kotamraju
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://www.privacypolicies.com/live/0e2502f6-4354-45ad-b893-20d0b9ae0548
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "LeetCodeGPT",
    "version": "1.03",
    "description": "Use GPT to help you solve leetcode problems.",
    "icons": {
        "16": "LeetCodeGPTLogoBold.png",
        "48": "LeetCodeGPTLogoBold.png",
        "128": "LeetCodeGPTLogoBold.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "host_permissions": [
        "https:\/\/leetcode.com\/problems\/*"
    ],
    "permissions": [
        "tabs",
        "storage",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "*.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/leetcode.com\/problems\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}