JSON Viewer Pro

A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅…

JSON Viewer Pro란 무엇입니까?

JSON Viewer Pro은(는) Rahul Baruri에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅…"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options.

 ✅ Completely Free and no advertisements.

Core features:

✅ Beautify JSON response from API
✅ Visual representation of JSON with Chart
✅ Depth traversing of JSON property using breadcrumbs
✅ Write custom JSON in Input area
✅ Import local JSON file
✅ Download JSON file using Context Menu
✅ URL filters
✅ Change Themes
✅ Custom CSS
✅ Cool User Interface.
✅ Copy property and value
✅ Access JSON in your console using only json keyword                    

확장 프로그램 기본 정보

이름 JSON Viewer Pro JSON Viewer Pro
ID eifflpmocdbdmepbjaopkkhbfmdgijcc
공식 URL https://chromewebstore.google.com/detail/json-viewer-pro/eifflpmocdbdmepbjaopkkhbfmdgijcc
설명 A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅…
파일 크기 338 KB
설치 횟수 385,193
현재 버전 1.0.1
최근 업데이트 2021-03-21
출시 날짜 2020-10-04
평점 4.77/5 총 111 개의 평점
개발자 Rahul Baruri
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/rbrahul/Awesome-JSON-Viewer
도움말 페이지 URL https://github.com/rbrahul/Awesome-JSON-Viewer
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON Viewer Pro",
    "short_name": "JSON Viewer",
    "offline_enabled": true,
    "version": "1.0.1",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icons\/icon-16.png",
        "38": "images\/icons\/icon-32.png",
        "128": "images\/icons\/icon-128.png"
    },
    "background": {
        "scripts": [
            "\/js\/background.js"
        ]
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "\/js\/contentScript.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_icon": "images\/icons\/icon-16.png"
    },
    "permissions": [
        "*:\/\/*\/*",
        "contextMenus"
    ],
    "web_accessible_resources": [
        "\/js\/main.js",
        "\/css\/main.css",
        "\/css\/themes\/mdn.css",
        "options.html",
        "images\/icons\/gear.png"
    ]
}