Clojure Extension

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

Qu'est-ce que Clojure Extension ?

Clojure Extension est une extension Chrome développée par Big Solutions, et sa fonction principale est "Adds an option to the context menu which allows you to eval selected Clojure code.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Clojure Extension

Téléchargez les fichiers d'extension Clojure Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Clojure Extension Clojure Extension
ID dkhaobmljgohccicjemmbacpooaacgeo
URL Officiel https://chromewebstore.google.com/detail/clojure-extension/dkhaobmljgohccicjemmbacpooaacgeo
Description Adds an option to the context menu which allows you to eval selected Clojure code.
Taille du Fichier 118 KB
Nombre d'Installations 122
Version Actuelle 0.8
Dernière Mise à Jour 2016-11-21
Date de Publication 2016-11-19
Évaluation 5.00/5 Total 5 Évaluations
Développeur Big Solutions
Type de Paiement free
Site Web de l'Extension http://chromeclojure.com
URL de la Page d'Aide https://github.com/goranjovic/chromeclojure/issues
Langues Prises en Charge 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\/; "
}