Learn2Code

Learn2Code

Learn programming in a practical way without moving out from browser!

Merlin
Additional files are visible only to premium users

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';"
}