JSON Hero

A beautiful JSON explorer packed with features

JSON Hero란 무엇입니까?

JSON Hero은(는) https://jsonhero.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A beautiful JSON explorer packed with features"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

JSON Hero 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        JSON Hero is an open-source, beautiful JSON explorer for the web that lets you browse, search and navigate your JSON files at speed.

The JSON Hero Chrome extension allows you to quickly send JSON to view in JSON Hero. Or turn on *auto-mode and any pure JSON responses in Chrome will be transformed into a JSON Hero view.

This extension will also allow you to send JSON from a Github file or a Firestore document right to JSON Hero. Just activate the extension in the toolbar whenever you are viewing a JSON GitHub file or a Firestore document in the Firestore console and they'll open in JSON Hero.

* By turning on auto-mode any pure JSON responses will be automatically sent to jsonhero.io. If you are running a custom instance of JSON Hero, you can change the server URL in the extension settings.                    

확장 프로그램 기본 정보

이름 JSON Hero JSON Hero
ID dneionnnnjnofppmhcccbiaklandilch
공식 URL https://chromewebstore.google.com/detail/json-hero/dneionnnnjnofppmhcccbiaklandilch
설명 A beautiful JSON explorer packed with features
파일 크기 868 KB
설치 횟수 1,665
현재 버전 0.0.1
최근 업데이트 2022-06-05
출시 날짜 2022-06-04
평점 4.43/5 총 7 개의 평점
개발자 https://jsonhero.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://jsonhero.io
개인정보 보호 정책 페이지 URL https://jsonhero.io/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "JSON Hero",
    "description": "A beautiful JSON explorer packed with features",
    "version": "0.0.1",
    "author": "Eric Allam",
    "options_page": "options.html",
    "background": {
        "service_worker": "build\/background.js"
    },
    "action": {
        "default_icon": {
            "16": "icon-16.png",
            "24": "icon-24.png",
            "32": "icon-32.png"
        }
    },
    "icons": {
        "512": "icon-512.png",
        "128": "icon-128.png",
        "48": "icon-48.png",
        "32": "icon-32.png",
        "16": "icon-16.png"
    },
    "permissions": [
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "build\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [],
            "matches": []
        }
    ]
}