Functional JSON viewer

Modern JSON formatter and explorer.

Functional JSON viewer क्या है?

Functional JSON viewer Dmytro द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Modern JSON formatter and explorer."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Functional JSON viewer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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": [
        "*:\/\/*\/*",
        ""
    ]
}