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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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