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."입니다.
확장 프로그램 스크린샷
Clojure Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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\/; " } |