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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में LeetCode Mate एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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'"
}