LeetChatGPT

Get ChatGPT's help and guidance for solving leetcode/hacker-rank questions

LeetChatGPTคืออะไร?

LeetChatGPT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://leetchatgpt.com และคุณลักษณะหลักของมันคือ "Get ChatGPT's help and guidance for solving leetcode/hacker-rank questions"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย LeetChatGPT

ดาวน์โหลดไฟล์ส่วนขยาย LeetChatGPT ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This is an open-source browser extension that tramendesouly improves your leetcode experience by providing instant feedback, guidance and help powered by ChatGPT. Never get stuck on a leetcode question again.

## 🔍 Features
- 🧩 Supports both leetcode and hacker-rank questions
- ⏳ Timer Mode: Get feedback and help for your current solution when a timer runs out
- 🖐️ Manual Mode: Get feedback for your current solution towards a brute-force or optimal solution on demand
- 💬 Ask follow-up questions (chat with ChatGPT)
- 🏆 Streak system for motivation
- 🎯 Customizable reminders for constistent problem solving goals
- 📜 Conversation history kept locally
- 👥 Export and share conversations as png, pdf or markdown
- 🎨 Markdown rendering and Code highlights
- 🔓 Supports both ChatGPT WebApp and OpenAI Key (models: gpt-3.5-turbo, gpt-4, gpt-4-32k)

Consider give it ⭐if you enjoy using this tool

Source Code: https://github.com/Liopun/leet-chatgpt-extension                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ LeetChatGPT LeetChatGPT
ID ephkkockglkjbdljoljjfdlfmgkeijek
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/leetchatgpt/ephkkockglkjbdljoljjfdlfmgkeijek
คำอธิบาย Get ChatGPT's help and guidance for solving leetcode/hacker-rank questions
ขนาดไฟล์ 2.55 MB
จำนวนการติดตั้ง 614
เวอร์ชันปัจจุบัน 1.0.10
อัปเดตครั้งล่าสุด 2023-11-27
วันที่เผยแพร่ 2023-03-08
คะแนน 4.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา https://leetchatgpt.com
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "author": "Liopun",
    "name": "__MSG_appName__",
    "short_name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "1.0.10",
    "icons": {
        "16": "logo.png",
        "32": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "host_permissions": [
        "https:\/\/*.openai.com\/"
    ],
    "permissions": [
        "storage",
        "alarms",
        "notifications",
        "unlimitedStorage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "logo.png",
            "32": "logo.png",
            "48": "logo.png",
            "128": "logo.png"
        },
        "default_title": "__MSG_appName__"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/leetcode.com\/problems\/*",
                "https:\/\/www.leetcode.com\/problems\/*",
                "https:\/\/leetcode.com\/problems\/*\/description\/*",
                "https:\/\/www.leetcode.com\/problems\/*\/description\/*",
                "https:\/\/leetcode.cn\/problems\/*",
                "https:\/\/www.leetcode.cn\/problems\/*",
                "https:\/\/leetcode.cn\/problems\/*\/description\/*",
                "https:\/\/www.leetcode.cn\/problems\/*\/description\/*",
                "https:\/\/hackerrank.com\/challenges\/*\/problem*",
                "https:\/\/www.hackerrank.com\/challenges\/*\/problem*"
            ],
            "run_at": "document_idle",
            "js": [
                "content-script.js"
            ],
            "css": [
                "content-script.css"
            ]
        }
    ]
}