LeetCoder Pro
LeetCode Extension
什麼是LeetCoder Pro?
LeetCoder Pro是由lc_chrome_extension開發的Chrome擴展程式,該擴展的主要功能是“LeetCode Extension”。
擴展截圖
下載LeetCoder Pro擴展crx文件
下載LeetCoder Pro擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
                        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.                     擴展基本資訊
| 名稱 |   |  
| ID | nkjhlfmlgoadihojkbchmjebljpgiopb | 
| 官方網址 | https://chromewebstore.google.com/detail/leetcoder-pro/nkjhlfmlgoadihojkbchmjebljpgiopb | 
| 簡介 | LeetCode Extension | 
| 檔案大小 | 148 KB | 
| 安裝次數 | 30 | 
| 目前版本 | 1.0 | 
| 更新時間 | 2022-01-24 | 
| 上架時間 | 2022-01-24 | 
| 開發者 | lc_chrome_extension | 
| 電子郵箱 | [email protected] | 
| 付費類型 | free | 
| 擴展官網 | https://github.com/colinshenc/LeetCoder-Pro | 
| 支援的語言 | 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"
        }
    }
}  |  |