Learn2Code
Learn programming in a practical way without moving out from browser!
Learn2Code란 무엇입니까?
Learn2Code은(는) Sridhar에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Learn programming in a practical way without moving out from browser!"입니다.
확장 프로그램 스크린샷
Learn2Code 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Learn2Code provides a way for users to compile and run their programs from within the browsers. Features: * Compile and test your code from within the browser. * Support for 13 major programming languages(C/C++/Java/Python/C#/Perl/Ruby/Scala/Clojure/Haskell/Go/Erlang) * Syntax highlighting for all supported languages. Upcoming features: * Save/Load the code from local file system. * Clean and intuitive UI design. Source code: https://github.com/sridhar87/Learn2Code If you are a developer, feel free to contribute to this project, and give me a pull request, I will update the extension and will include your name in the list of contributors. Credits: The online compiler is powered by hackerrank.com backend and the code editor is powered by ACE javascript editor.
확장 프로그램 기본 정보
이름 | |
ID | idhfedcfngiegcjcplaognlconkojkom |
공식 URL | https://chrome.google.com/webstore/detail/learn2code/idhfedcfngiegcjcplaognlconkojkom |
설명 | Learn programming in a practical way without moving out from browser! |
파일 크기 | 1.94 MB |
설치 횟수 | 1,000 |
현재 버전 | 1.0 |
최근 업데이트 | 2014-04-18 |
출시 날짜 | 2014-04-18 |
평점 | 4.50/5 총 18 개의 평점 |
개발자 | Sridhar |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Learn2Code", "manifest_version": 2, "version": "1.0", "description": "Learn programming in a practical way without moving out from browser!", "short_description": "Learn programming in a practical way without moving out from browser!", "browser_action": { "default_icon": "L2C.png", "default_popup": "popup.html" }, "icons": { "16": "L2C16.png", "48": "L2C48.png", "128": "L2C.png" }, "background": { "page": "background.html" }, "permissions": [ "tabs", "http:\/\/api.hackerrank.com\/checker\/submission.json", "https:\/\/api.hackerrank.com\/checker\/submission.json" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self' 'unsafe-eval';" } |