Leetcode Explained
Enhances Leetcode problems with solution code, video explanations, and GPT code analysis.
Leetcode Explainedคืออะไร?
Leetcode Explained เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://leetcodeapp.com และคุณลักษณะหลักของมันคือ "Enhances Leetcode problems with solution code, video explanations, and GPT code analysis."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Leetcode Explained
ดาวน์โหลดไฟล์ส่วนขยาย Leetcode Explained ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
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": [ " |