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
公式URL 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\/; "
}