ClojureScript REPL (Self Hosting)

Self Hosting ClojureScript REPL for Chrome DevTools

What is ClojureScript REPL (Self Hosting)?

ClojureScript REPL (Self Hosting) is a Chrome extension developed by whamtet, and its main feature is "Self Hosting ClojureScript REPL for Chrome DevTools".

Extension Screenshots

screenshot

Download ClojureScript REPL (Self Hosting) Extension CRX File

Download ClojureScript REPL (Self Hosting) 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

                        ClojureScript REPL adds a REPL to Chrome Developer Tools.  It uses Clojurescript 1.10 which is self-compiling, so no external server requests are necessary.                    

Extension Basic Information

Name ClojureScript REPL (Self Hosting) ClojureScript REPL (Self Hosting)
ID clcbfdlgoilmcnnlaglgbjibfimlacdn
Official URL https://chrome.google.com/webstore/detail/clojurescript-repl-self-h/clcbfdlgoilmcnnlaglgbjibfimlacdn
Description Self Hosting ClojureScript REPL for Chrome DevTools
File Size 2.06 MB
Installation Count 78
Current Version 0.2.12
Last Updated 2019-10-05
Publish Date 2019-10-05
Rating 4.00/5 Total 6 Ratings
Developer whamtet
Payment Type free
Extension Website https://github.com/whamtet/chrome-clojurescript-repl
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ClojureScript REPL (Self Hosting)",
    "description": "Self Hosting ClojureScript REPL for Chrome DevTools",
    "version": "0.2.12",
    "author": "Matthew Molloy",
    "devtools_page": "devtools.html",
    "permissions": [
        "tabs",
        "*:\/\/*\/*",
        "webRequest",
        "webRequestBlocking",
        "background"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_security_policy": "script-src 'self' http:\/\/localhost:* https:\/\/localhost:* 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "\/out\/self_compile.js",
        "\/jquery-2.1.1.min.js"
    ]
}