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!”。

擴展截圖

screenshot
screenshot
screenshot

下載Learn2Code擴展crx文件

下載Learn2Code擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Learn2Code Learn2Code
ID idhfedcfngiegcjcplaognlconkojkom
官方網址 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';"
}