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文件

下載Functional JSON viewer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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": [
        "*:\/\/*\/*",
        ""
    ]
}