Browser Haskell

Browser Haskell

Right click on haskell code to play with it!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "background": {
    "scripts": [
      "background.js",
      "jquery-3.1.1.min.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "script.js"
  ],
  "description": "Right click on haskell code to play with it!",
  "minimum_chrome_version": "6",
  "name": "Browser Haskell",
  "permissions": [
    "contextMenus",
    "tabs"
  ],
  "version": "1.0",
  "manifest_version": 2
}