Leetcode Explained

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

什么是Leetcode Explained?

Leetcode Explained是由https://leetcodeapp.com开发的Chrome扩展程序,该扩展的主要功能是“Enhances Leetcode problems with solution code, video explanations, and GPT code analysis.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Leetcode Explained扩展crx文件

下载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 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": [
                ""
            ]
        }
    ]
}