Clojure Extension
Adds an option to the context menu which allows you to eval selected Clojure code.
¿Qué es Clojure Extension?
Clojure Extension es una extensión de Chrome desarrollada por Big Solutions, y su función principal es "Adds an option to the context menu which allows you to eval selected Clojure code.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Clojure Extension
Descarga archivos de extensión Clojure Extension en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Like Clojure and often read blogs about it? Often have to start up a REPL and copy&paste a snippet just to see how will it evaluate? Worry no more! Install this Chrome extension and you will have another option in your browser's context menu - Eval as Clojure. Select a piece of Clojure code, right click it and choose this option and you will instantly get a notification with evaluation results. Look at the screenshot to see how it works or install this extension and try it out yourself! Change log: Version 0.6 2012-01-08 -Added support for evaluation of multiple Clojure forms (including defs) in a single request. -Added extension options page. Users can now choose between desktop notifications and plain old alerts.
Información Básica de la Extensión
Nombre | Clojure Extension |
ID | dkhaobmljgohccicjemmbacpooaacgeo |
URL Oficial | https://chromewebstore.google.com/detail/clojure-extension/dkhaobmljgohccicjemmbacpooaacgeo |
Descripción | Adds an option to the context menu which allows you to eval selected Clojure code. |
Tamaño del Archivo | 118 KB |
Cantidad de Instalaciones | 122 |
Versión Actual | 0.8 |
Última Actualización | 2016-11-21 |
Fecha de Publicación | 2016-11-19 |
Calificación | 5.00/5 Total de 5 Calificaciones |
Desarrollador | Big Solutions |
Tipo de Pago | free |
Sitio Web de la Extensión | http://chromeclojure.com |
URL de la Página de Ayuda | https://github.com/goranjovic/chromeclojure/issues |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Clojure Extension", "description": "Adds an option to the context menu which allows you to eval selected Clojure code.", "version": "0.8", "manifest_version": 2, "permissions": [ "contextMenus", "notifications", "http:\/\/chromeclojure.com\/" ], "icons": { "16": "icon-tiny.png", "48": "icon-small.png", "128": "icon-large.png" }, "background": { "scripts": [ "jquery-3.1.1.min.js", "chromeclojure.js" ] }, "options_page": "options.html", "content_security_policy": "default-src 'self'; style-src 'self'; connect-src http:\/\/chromeclojure.com\/; " } |