Learn2Code
Learn programming in a practical way without moving out from browser!
Τι είναι το Learn2Code;
Το Learn2Code είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Sridhar, και η κύρια λειτουργία του είναι "Learn programming in a practical way without moving out from browser!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Learn2Code
Λήψη αρχείων επέκτασης 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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
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';" } |