Neps Academy Companion
This extension allow send test cases from Neps Academy to the VSCode extension CPH.
Neps Academy Companion란 무엇입니까?
Neps Academy Companion은(는) https://neps.academy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allow send test cases from Neps Academy to the VSCode extension CPH."입니다.
확장 프로그램 스크린샷
Neps Academy Companion 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This tool integrates Competitive Programming Helper (CPH) into Neps Academy. Clicking in the extension icon when visiting a programming exercise page at Neps will send all the information to the CPH extension. CPH will create a file for the exercise, so you can start coding in your favourite language. Additionally, all test cases will be imported as well. PS: If it does not work please refresh the page or restart your browser.
확장 프로그램 기본 정보
이름 | Neps Academy Companion |
ID | melmbgodgcahddlphjgjhefmnpcmfage |
공식 URL | https://chromewebstore.google.com/detail/neps-academy-companion/melmbgodgcahddlphjgjhefmnpcmfage |
설명 | This extension allow send test cases from Neps Academy to the VSCode extension CPH. |
파일 크기 | 20.68 KB |
설치 횟수 | 124 |
현재 버전 | 1.0 |
최근 업데이트 | 2021-04-09 |
출시 날짜 | 2021-04-07 |
개발자 | https://neps.academy |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/ThiNepo/NepsAcademyCompanion |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Neps Academy Companion", "version": "1.0", "description": "This extension allow send test cases from Neps Academy to the VSCode extension CPH.", "permissions": [ "http:\/\/localhost\/" ], "content_scripts": [ { "matches": [ "*:\/\/neps.academy\/*" ], "js": [ "src\/content.js" ] } ], "background": { "scripts": [ "src\/background.js" ] }, "browser_action": { "default-icon": { "16": "icons\/16-defaultIcon.png", "32": "icons\/32-defaultIcon.png", "64": "icons\/64-defaultIcon.png", "128": "icons\/128-defaultIcon.png" } }, "icons": { "16": "icons\/16-defaultIcon.png", "32": "icons\/32-defaultIcon.png", "64": "icons\/64-defaultIcon.png", "128": "icons\/128-defaultIcon.png" } } |