Clojure Extension

Adds an option to the context menu which allows you to eval selected Clojure code.

Cos'è Clojure Extension?

Clojure Extension è un'estensione di Chrome sviluppata da Big Solutions, e la sua funzione principale è "Adds an option to the context menu which allows you to eval selected Clojure code.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Clojure Extension

Scarica i file di estensione Clojure Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Clojure Extension Clojure Extension
ID dkhaobmljgohccicjemmbacpooaacgeo
URL Ufficiale https://chromewebstore.google.com/detail/clojure-extension/dkhaobmljgohccicjemmbacpooaacgeo
Descrizione Adds an option to the context menu which allows you to eval selected Clojure code.
Dimensione del File 118 KB
Conteggio Installazioni 122
Versione Corrente 0.8
Ultimo Aggiornamento 2016-11-21
Data di Pubblicazione 2016-11-19
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore Big Solutions
Tipo di Pagamento free
Sito Web dell'Estensione http://chromeclojure.com
URL della Pagina di Aiuto https://github.com/goranjovic/chromeclojure/issues
Lingue Supportate 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\/; "
}