JSON Hero

A beautiful JSON explorer packed with features

JSON Hero क्या है?

JSON Hero https://jsonhero.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A beautiful JSON explorer packed with features"।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

crx प्रारूप में JSON Hero एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        JSON Hero is an open-source, beautiful JSON explorer for the web that lets you browse, search and navigate your JSON files at speed.

The JSON Hero Chrome extension allows you to quickly send JSON to view in JSON Hero. Or turn on *auto-mode and any pure JSON responses in Chrome will be transformed into a JSON Hero view.

This extension will also allow you to send JSON from a Github file or a Firestore document right to JSON Hero. Just activate the extension in the toolbar whenever you are viewing a JSON GitHub file or a Firestore document in the Firestore console and they'll open in JSON Hero.

* By turning on auto-mode any pure JSON responses will be automatically sent to jsonhero.io. If you are running a custom instance of JSON Hero, you can change the server URL in the extension settings.                    

एक्सटेंशन की मूल जानकारी

नाम JSON Hero JSON Hero
ID dneionnnnjnofppmhcccbiaklandilch
आधिकारिक URL https://chromewebstore.google.com/detail/json-hero/dneionnnnjnofppmhcccbiaklandilch
विवरण A beautiful JSON explorer packed with features
फ़ाइल का आकार 868 KB
स्थापना संख्या 1,665
वर्तमान संस्करण 0.0.1
अंतिम अपडेट 2022-06-05
प्रकाशन तिथि 2022-06-04
रेटिंग 4.43/5 कुल 7 रेटिंग्स
डेवलपर https://jsonhero.io
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://jsonhero.io
गोपनीयता नीति पृष्ठ URL https://jsonhero.io/privacy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "JSON Hero",
    "description": "A beautiful JSON explorer packed with features",
    "version": "0.0.1",
    "author": "Eric Allam",
    "options_page": "options.html",
    "background": {
        "service_worker": "build\/background.js"
    },
    "action": {
        "default_icon": {
            "16": "icon-16.png",
            "24": "icon-24.png",
            "32": "icon-32.png"
        }
    },
    "icons": {
        "512": "icon-512.png",
        "128": "icon-128.png",
        "48": "icon-48.png",
        "32": "icon-32.png",
        "16": "icon-16.png"
    },
    "permissions": [
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "build\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [],
            "matches": []
        }
    ]
}