JSON Viewer React

JSON viewer built using ReactJS. View full JSON paths on hover, copy full paths or path values, and toggle collapse of all objects.

JSON Viewer React क्या है?

JSON Viewer React seeto.alexander द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "JSON viewer built using ReactJS. View full JSON paths on hover, copy full paths or path values, and toggle collapse of all objects."।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        JSON viewer built using ReactJS. View full JSON paths on hover, copy full paths or path values, and toggle collapse of all objects.                    

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

नाम JSON Viewer React JSON Viewer React
ID icmodedamhnefjjpoiiajlpeldehdofi
आधिकारिक URL https://chromewebstore.google.com/detail/json-viewer-react/icmodedamhnefjjpoiiajlpeldehdofi
विवरण JSON viewer built using ReactJS. View full JSON paths on hover, copy full paths or path values, and toggle collapse of all objects.
फ़ाइल का आकार 882 KB
स्थापना संख्या 529
वर्तमान संस्करण 1.0.2
अंतिम अपडेट 2022-11-13
प्रकाशन तिथि 2019-03-08
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर seeto.alexander
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/ASeeto/json-viewer-react
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "JSON viewer built using ReactJS. View full JSON paths on hover, copy full paths or path values, and toggle collapse of all objects.",
    "version": "1.0.2",
    "name": "JSON Viewer React",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "json-viewer-react-icon-16.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.bundle.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "json-viewer-react-icon-16.png",
        "48": "json-viewer-react-icon-48.png",
        "128": "json-viewer-react-icon-128.png"
    },
    "permissions": [
        "storage",
        "*:\/\/*\/*",
        ""
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}