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.

What is JSON Viewer React?

JSON Viewer React is a Chrome extension developed by seeto.alexander, and its main feature is "JSON viewer built using ReactJS. View full JSON paths on hover, copy full paths or path values, and toggle collapse of all objects.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download JSON Viewer React Extension CRX File

Download JSON Viewer React 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

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

Extension Basic Information

Name JSON Viewer React JSON Viewer React
ID icmodedamhnefjjpoiiajlpeldehdofi
Official URL https://chromewebstore.google.com/detail/json-viewer-react/icmodedamhnefjjpoiiajlpeldehdofi
Description JSON viewer built using ReactJS. View full JSON paths on hover, copy full paths or path values, and toggle collapse of all objects.
File Size 882 KB
Installation Count 529
Current Version 1.0.2
Last Updated 2022-11-13
Publish Date 2019-03-08
Rating 5.00/5 Total 2 Ratings
Developer seeto.alexander
Email [email protected]
Payment Type free
Extension Website https://github.com/ASeeto/json-viewer-react
Supported Languages 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'"
}