LeetCodeGPT

Use GPT to help you solve leetcode problems.

LeetCodeGPT란 무엇입니까?

LeetCodeGPT은(는) saketh.kotamraju에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use GPT to help you solve leetcode problems."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

LeetCodeGPT 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
        }
    ]
}