Leetcode: Copy all example test cases
Lets you copy all the example test cases on leetcode with just one click.
Leetcode: Copy all example test cases란 무엇입니까?
Leetcode: Copy all example test cases은(는) ABSCodes에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Lets you copy all the example test cases on leetcode with just one click."입니다.
확장 프로그램 스크린샷
Leetcode: Copy all example test cases 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Coding on leetcode? Like to sanity test your code before submitting? But tired of copying manually each test case input and pasting it in Custom Testcase box? 😕 Then you are in the right place! This extension boosts your productivity by automating the above process. This extension lets you copy all the example test cases to your clipboard with just a single press of your keyboard! Use CTRL+SHIFT+RIGHT key combination and done! All test cases are copied to your clipboard. You can then paste the test cases in Custom Testcase box and sanity test your code! Isn't that amazing? Go ahead and add this extension right away 💨 and be more productive :)
확장 프로그램 기본 정보
이름 | Leetcode: Copy all example test cases |
ID | plfcfckljjgfdbpmhofbjfgoedfngnli |
공식 URL | https://chromewebstore.google.com/detail/leetcode-copy-all-example/plfcfckljjgfdbpmhofbjfgoedfngnli |
설명 | Lets you copy all the example test cases on leetcode with just one click. |
파일 크기 | 95.57 KB |
설치 횟수 | 85 |
현재 버전 | 1.0 |
최근 업데이트 | 2021-01-06 |
출시 날짜 | 2021-01-05 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | ABSCodes |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Leetcode: Copy all example test cases", "version": "1.0", "description": "Lets you copy all the example test cases on leetcode with just one click.", "permissions": [ "activeTab", "declarativeContent" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "commands": { "copy-paste": { "suggested_key": { "default": "Ctrl+Shift+Right", "mac": "Command+Shift+Right" }, "description": "Copy all test cases and paste it in Custom Testcase box." } }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "manifest_version": 2 } |