Functional JSON viewer

Modern JSON formatter and explorer.

Functional JSON viewer란 무엇입니까?

Functional JSON viewer은(는) Dmytro에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Modern JSON formatter and explorer."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Why to use:

- Foldable & filterable & focusable nodes
- (Shift-)Tab navigation
- Show node path on focus & hover
- Keymaps (Vim inspired)
- Clickable links
- Light & dark theme
- Converting JSON
- Screenshot (JSON to image .jpeg)

---
Functionality:

- Filter nodes
- Collapse all nodes
- Expand all nodes
- Save JSON
- Copy JSON
- Copy node
- Copy node path
- Switch formatted & raw data
- Sticky panels

---
Convert JSON to:

- JSON schema
- Typescript interfaces (.d.ts)
- Golang structs (.go)

---
Keymaps:

h | ArrowLeft - move focus left (parent node)
j | ArrowDown - move focus down (next sibling)
k | ArrowUp - move focus up (previous sibling)
l | ArrowRight - move focus right (child node)
c - collapse all child nodes
e - expand all child nodes
y - copy node
p - copy node path

---
Tips:

On large file, better search:
1. Click collapse all
2. Use native browser search (Ctrl+f)
3. Browser will auto expand matched nodes

---
Code:
https://github.com/diogenesofweb/fjv                    

확장 프로그램 기본 정보

이름 Functional JSON viewer Functional JSON viewer
ID cokkmplppnaigoodkkjopoblfaelibab
공식 URL https://chromewebstore.google.com/detail/functional-json-viewer/cokkmplppnaigoodkkjopoblfaelibab
설명 Modern JSON formatter and explorer.
파일 크기 55.38 KB
설치 횟수 46
현재 버전 0.0.9
최근 업데이트 2024-01-07
출시 날짜 2023-06-18
평점 5.00/5 총 1 개의 평점
개발자 Dmytro
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/diogenesofweb/fjv
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Functional JSON viewer",
    "version": "0.0.9",
    "manifest_version": 3,
    "description": "Modern JSON formatter and explorer.",
    "homepage_url": "https:\/\/github.com\/diogenesofweb\/fjv",
    "minimum_chrome_version": "88",
    "icons": {
        "128": "img\/128.png",
        "48": "img\/48.png",
        "32": "img\/32.png",
        "16": "img\/16.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "style.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "storage",
        "contextMenus",
        "clipboardWrite"
    ],
    "host_permissions": [
        "*:\/\/*\/*",
        ""
    ]
}