ClojureScript REPL (Self Hosting)

ClojureScript REPL (Self Hosting)

Self Hosting ClojureScript REPL for Chrome DevTools

Merlin
Additional files are visible only to premium users

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"
  ]
}