Functional JSON viewer

Modern JSON formatter and explorer.

What is Functional JSON viewer?

Functional JSON viewer is a Chrome extension developed by Dmytro, and its main feature is "Modern JSON formatter and explorer.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Functional JSON viewer Extension CRX File

Download Functional JSON viewer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Functional JSON viewer Functional JSON viewer
ID cokkmplppnaigoodkkjopoblfaelibab
Official URL https://chromewebstore.google.com/detail/functional-json-viewer/cokkmplppnaigoodkkjopoblfaelibab
Description Modern JSON formatter and explorer.
File Size 55.38 KB
Installation Count 46
Current Version 0.0.9
Last Updated 2024-01-07
Publish Date 2023-06-18
Rating 5.00/5 Total 1 Ratings
Developer Dmytro
Email [email protected]
Payment Type free
Extension Website https://github.com/diogenesofweb/fjv
Supported Languages 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": [
        "*:\/\/*\/*",
        ""
    ]
}