Leetcode Shortcuts

LeetCode Shortcuts is a Chrome extension to improve your L.C. Coding Experiences!!!

什么是Leetcode Shortcuts?

Leetcode Shortcuts是由Vicky Jha开发的Chrome扩展程序,该扩展的主要功能是“LeetCode Shortcuts is a Chrome extension to improve your L.C. Coding Experiences!!!”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Leetcode Shortcuts扩展crx文件

下载Leetcode Shortcuts扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        In coding Competition we have less time, and we don't want to waste it playing with mouse.
Hence this is an extension which allows to use keyboard shortcuts for LeetCode Website (leetcode.com) and thus completely minimising mouse work while Coding.

This includes the following shortcuts:
 - Code Submit
 - Run Code
 - Toggle LeetCode Console
 - Open LeetCode's Console and Copy all Example test cases inside console
 - Switching between LeetCode's console elements when LeetCode console is open i.e. between "TestCase", "Run Code Result", "Debugger"

This Shortcuts works perfectly on LeetCode Website(https://leetcode.com/*) every Problem solving page i.e. for practice problems,  Contests, all elements of Explore Section of LeetCode, Assessment, etc.

In short the benefits of using keyboard shortcuts are:
1. Efficient and time-saving
2. Multi-tasking
3. Increases Productivity                    

扩展基本信息

名称 Leetcode Shortcuts Leetcode Shortcuts
ID gnfgpckgnjfpifajcmmkegajbnmpdagb
官方URL https://chromewebstore.google.com/detail/leetcode-shortcuts/gnfgpckgnjfpifajcmmkegajbnmpdagb
简介 LeetCode Shortcuts is a Chrome extension to improve your L.C. Coding Experiences!!!
文件大小 246 KB
安装次数 709
当前版本 0.0.0.4
更新时间 2022-05-01
上架时间 2021-05-26
评分 5.00/5 共7次评分
开发者 Vicky Jha
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Leetcode Shortcuts",
    "version": "0.0.0.4",
    "description": "LeetCode Shortcuts is a Chrome extension to improve your L.C. Coding Experiences!!!",
    "permissions": [
        "https:\/\/leetcode.com\/*"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "128": "icons\/128.png",
        "192": "icons\/192.png",
        "512": "icons\/512.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/leetcode.com\/*"
            ],
            "js": [
                "leetcode.js"
            ],
            "run_at": "document_start"
        }
    ]
}