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
官方URL 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'"
}