LeetCode Mate

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

Was ist LeetCode Mate?

LeetCode Mate ist eine Chrome-Erweiterung, die von JasonSun entwickelt wurde, und ihr Hauptmerkmal ist "LeetCode Mate is a Chrome extension to improve your LeetCode Experience! The current LeetCode UI can sometimes be hard to use…".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

LeetCode Mate-Erweiterungs-CRX-Datei herunterladen

Laden Sie LeetCode Mate-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name LeetCode Mate LeetCode Mate
ID phdjfdamgpemogokbkjeidpekchgmhem
Offizielle URL https://chromewebstore.google.com/detail/leetcode-mate/phdjfdamgpemogokbkjeidpekchgmhem
Beschreibung LeetCode Mate is a Chrome extension to improve your LeetCode Experience! The current LeetCode UI can sometimes be hard to use…
Dateigröße 564 KB
Installationsanzahl 108
Aktuelle Version 2.0.0
Letztes Update 2021-01-20
Veröffentlichungsdatum 2020-12-29
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler JasonSun
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/bethandtownes/leetcode-mate
Hilfeseite URL https://github.com/bethandtownes/leetcode-mate
Unterstützte Sprachen 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'"
}