ClojureScript REPL (Self Hosting)

Self Hosting ClojureScript REPL for Chrome DevTools

ClojureScript REPL (Self Hosting) là gì?

ClojureScript REPL (Self Hosting) là một tiện ích mở rộng Chrome được phát triển bởi whamtet, và tính năng chính của nó là "Self Hosting ClojureScript REPL for Chrome DevTools".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ClojureScript REPL (Self Hosting)

Tải xuống các tệp mở rộng ClojureScript REPL (Self Hosting) dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        ClojureScript REPL adds a REPL to Chrome Developer Tools.  It uses Clojurescript 1.10 which is self-compiling, so no external server requests are necessary.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ClojureScript REPL (Self Hosting) ClojureScript REPL (Self Hosting)
ID clcbfdlgoilmcnnlaglgbjibfimlacdn
URL Chính Thức https://chrome.google.com/webstore/detail/clojurescript-repl-self-h/clcbfdlgoilmcnnlaglgbjibfimlacdn
Mô tả Self Hosting ClojureScript REPL for Chrome DevTools
Kích Thước Tệp 2.06 MB
Số Lần Cài Đặt 78
Phiên Bản Hiện Tại 0.2.12
Cập Nhật Lần Cuối 2019-10-05
Ngày Phát Hành 2019-10-05
Đánh Giá 4.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển whamtet
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/whamtet/chrome-clojurescript-repl
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ClojureScript REPL (Self Hosting)",
    "description": "Self Hosting ClojureScript REPL for Chrome DevTools",
    "version": "0.2.12",
    "author": "Matthew Molloy",
    "devtools_page": "devtools.html",
    "permissions": [
        "tabs",
        "*:\/\/*\/*",
        "webRequest",
        "webRequestBlocking",
        "background"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_security_policy": "script-src 'self' http:\/\/localhost:* https:\/\/localhost:* 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "\/out\/self_compile.js",
        "\/jquery-2.1.1.min.js"
    ]
}