Gadget Inspector: ClojureScript Data Browser

Browse the contents of ClojureScript data, browse and restore historic atom states.

Gadget Inspector: ClojureScript Data Browser란 무엇입니까?

Gadget Inspector: ClojureScript Data Browser은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browse the contents of ClojureScript data, browse and restore historic atom states."입니다.

확장 프로그램 스크린샷

screenshot

Gadget Inspector: ClojureScript Data Browser 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Gadget inspector is a devtools extension that adds a panel where you can browse any data in your running application that is passed through `gadget.inspector/inspect` - a function from the companion library - https://github.com/cjohansen/gadget-inspector.                    

확장 프로그램 기본 정보

이름 Gadget Inspector: ClojureScript Data Browser Gadget Inspector: ClojureScript Data Browser
ID bdkifiannmjgeedjpmhpaimcnkgfadli
공식 URL https://chromewebstore.google.com/detail/gadget-inspector-clojures/bdkifiannmjgeedjpmhpaimcnkgfadli
설명 Browse the contents of ClojureScript data, browse and restore historic atom states.
파일 크기 276 KB
설치 횟수 40
현재 버전 0.2019.12.10
최근 업데이트 2019-12-12
출시 날짜 2019-12-11
개발자 Unknown
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gadget Inspector: ClojureScript Data Browser",
    "version": "0.2019.12.10",
    "description": "Browse the contents of ClojureScript data, browse and restore historic atom states.",
    "manifest_version": 2,
    "devtools_page": "devtools.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "24": "icon-24.png",
        "36": "icon-36.png",
        "48": "icon-48.png",
        "128": "icon-128.png",
        "256": "icon-256.png"
    },
    "permissions": [
        "activeTab",
        "file:\/\/\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "api.js"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_globs": [
                "https:\/\/www.google*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}