Browser Haskell

Right click on haskell code to play with it!

What is Browser Haskell?

Browser Haskell is a Chrome extension developed by Aneesh Durg, and its main feature is "Right click on haskell code to play with it!".

Download Browser Haskell Extension CRX File

Download Browser Haskell extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Try haskell code in your browser without installing anything.                    

Extension Basic Information

Name Browser Haskell Browser Haskell
ID klkndfbpgehepbkhcjlgcmocedjdkchm
Official URL https://chromewebstore.google.com/detail/browser-haskell/klkndfbpgehepbkhcjlgcmocedjdkchm
Description Right click on haskell code to play with it!
File Size 88.98 KB
Installation Count 12
Current Version 1.0
Last Updated 2017-01-18
Publish Date 2017-01-18
Rating 3.00/5 Total 1 Ratings
Developer Aneesh Durg
Email [email protected]
Payment Type free
Extension Website http://www.browserhaskell.tk/editor
Supported Languages en
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": [
                ""
            ],
            "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
}