Functional JSON viewer

Modern JSON formatter and explorer.

Functional JSON viewer là gì?

Functional JSON viewer là một tiện ích mở rộng Chrome được phát triển bởi Dmytro, và tính năng chính của nó là "Modern JSON formatter and explorer.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Functional JSON viewer

Tải xuống các tệp mở rộng Functional JSON viewer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Functional JSON viewer Functional JSON viewer
ID cokkmplppnaigoodkkjopoblfaelibab
URL Chính Thức https://chromewebstore.google.com/detail/functional-json-viewer/cokkmplppnaigoodkkjopoblfaelibab
Mô tả Modern JSON formatter and explorer.
Kích Thước Tệp 55.38 KB
Số Lần Cài Đặt 46
Phiên Bản Hiện Tại 0.0.9
Cập Nhật Lần Cuối 2024-01-07
Ngày Phát Hành 2023-06-18
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Dmytro
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/diogenesofweb/fjv
Ngôn Ngữ Được Hỗ Trợ 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": [
        "*:\/\/*\/*",
        ""
    ]
}