LeetCode Mate

LeetCode Mate is a Chrome extension to improve your LeetCode Experience! The current LeetCode UI can sometimes be hard to use…

什麼是LeetCode Mate?

LeetCode Mate是由JasonSun開發的Chrome擴展程式,該擴展的主要功能是“LeetCode Mate is a Chrome extension to improve your LeetCode Experience! The current LeetCode UI can sometimes be hard to use…”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載LeetCode Mate擴展crx文件

下載LeetCode Mate擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        LeetCode Mate is a Chrome extension to improve your LeetCode Experience! 

The current LeetCode UI can sometimes be hard to use when running custom user input and read debug print information using the left hand size panel. The output box is too small to read out useful information without scrolling. 

This extension addresses this issue by creating alternative resizable,  and draggable dialog panel for run and submit code and display their run results accordingly. User can also toggle the UI of the extension by a keyboard shortcut. 

It also supports Toggling cursor blinking and bracket matching for the CodeMirror Editor.

Both LeetCode-CN and LeetCode are supported.                    

擴展基本資訊

名稱 LeetCode Mate LeetCode Mate
ID phdjfdamgpemogokbkjeidpekchgmhem
官方網址 https://chromewebstore.google.com/detail/leetcode-mate/phdjfdamgpemogokbkjeidpekchgmhem
簡介 LeetCode Mate is a Chrome extension to improve your LeetCode Experience! The current LeetCode UI can sometimes be hard to use…
檔案大小 564 KB
安裝次數 108
目前版本 2.0.0
更新時間 2021-01-20
上架時間 2020-12-29
評分 5.00/5 共 1 次評分
開發者 JasonSun
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/bethandtownes/leetcode-mate
說明頁面URL https://github.com/bethandtownes/leetcode-mate
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.0.0",
    "name": "LeetCode Mate",
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/leetcode.com\/problems\/*",
                "https:\/\/leetcode-cn.com\/problems\/*"
            ],
            "css": [
                "codemirror.css",
                "material.css",
                "content.styles.css"
            ],
            "js": [
                "contentScript.bundle.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.bundle.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "web_accessible_resources": [
        "page_script.js",
        "content.styles.css",
        "cache.json",
        "cache_cn.json",
        "icon-128.png",
        "icon-34.png"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}