LeetCoder Pro

LeetCode Extension

What is LeetCoder Pro?

LeetCoder Pro is a Chrome extension developed by lc_chrome_extension, and its main feature is "LeetCode Extension".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download LeetCoder Pro Extension CRX File

Download LeetCoder Pro extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        A simple LeetCode browser extension that provides software engineer interview prepers key problem submission data points. 🤗 💯

Note: In order to show data you must have submitted solutions before. To enable this extension, please log into (or register) your LeetCode account! Data refresh typically takes 1~2 seconds. 

Statistics definition
Session(# of Times Done): Two submissions count as two different sessions if they are submitted more than one day apart.
Acceptance Rate(personal): Ratio of accepted submissions to all submissions.                    

Extension Basic Information

Name LeetCoder Pro LeetCoder Pro
ID nkjhlfmlgoadihojkbchmjebljpgiopb
Official URL https://chromewebstore.google.com/detail/leetcoder-pro/nkjhlfmlgoadihojkbchmjebljpgiopb
Description LeetCode Extension
File Size 148 KB
Installation Count 30
Current Version 1.0
Last Updated 2022-01-24
Publish Date 2022-01-24
Developer lc_chrome_extension
Email [email protected]
Payment Type free
Extension Website https://github.com/colinshenc/LeetCoder-Pro
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LeetCoder Pro",
    "description": "LeetCode Extension",
    "version": "1.0",
    "manifest_version": 3,
    "action": {
        "default_popup": "popup.html",
        "default_icon": "\/images\/logo6.png"
    },
    "permissions": [
        "cookies",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.leetcode.com\/"
    ],
    "background": {
        "service_worker": "utils.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.leetcode.com\/problemset\/*"
            ],
            "js": [
                "submission.js"
            ]
        }
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "mac": "MacCtrl+Shift+L"
            },
            "description": "Open popup.html"
        }
    }
}