Clojure Extension

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

什麼是Clojure Extension?

Clojure Extension是由Big Solutions開發的Chrome擴展程式,該擴展的主要功能是“Adds an option to the context menu which allows you to eval selected Clojure code.”。

擴展截圖

screenshot

下載Clojure Extension擴展crx文件

下載Clojure Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Clojure Extension Clojure Extension
ID dkhaobmljgohccicjemmbacpooaacgeo
官方網址 https://chromewebstore.google.com/detail/clojure-extension/dkhaobmljgohccicjemmbacpooaacgeo
簡介 Adds an option to the context menu which allows you to eval selected Clojure code.
檔案大小 118 KB
安裝次數 122
目前版本 0.8
更新時間 2016-11-21
上架時間 2016-11-19
評分 5.00/5 共 5 次評分
開發者 Big Solutions
付費類型 free
擴展官網 http://chromeclojure.com
說明頁面URL https://github.com/goranjovic/chromeclojure/issues
支援的語言 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\/; "
}