JSON Explorer

Makes JSON responses easy to explore.

What is JSON Explorer?

JSON Explorer is a Chrome extension developed by https://watchthis.page, and its main feature is "Makes JSON responses easy to explore.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download JSON Explorer Extension CRX File

Download JSON Explorer 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 Explorer automatically formats messy responses and helps you navigate them. 
Besides expand/collapse, code highlighting, and clickable URLs it also provides: 

- Overview Chart: Allows you to explore the content through an interactive sunburst chart.
- URL Parameters: Displays URL parameters in an easy to read & edit format, and helps you load the new URL. 
- Image Previews: Displays a preview for image links at mouseover.                    

Extension Basic Information

Name JSON Explorer JSON Explorer
ID kiaijfgpdkcbmpdaochmmhefpdmlebhb
Official URL https://chromewebstore.google.com/detail/json-explorer/kiaijfgpdkcbmpdaochmmhefpdmlebhb
Description Makes JSON responses easy to explore.
File Size 129 KB
Installation Count 91
Current Version 1.0.1
Last Updated 2020-12-10
Publish Date 2020-12-09
Rating 5.00/5 Total 2 Ratings
Developer https://watchthis.page
Email [email protected]
Payment Type free
Extension Website https://watchthis.page/JSON-Explorer
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON Explorer",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "Makes JSON responses easy to explore.",
    "author": "https:\/\/watchthis.page",
    "homepage_url": "https:\/\/watchthis.page\/JSON-Explorer",
    "minimum_chrome_version": "21",
    "icons": {
        "128": "icons\/128.png",
        "32": "icons\/32.png"
    },
    "background": {
        "scripts": [
            "js\/vendor\/browser-polyfill.min.js",
            "js\/utils.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/vendor\/browser-polyfill.min.js",
                "js\/content.js",
                "js\/vendor\/d3.v5.min.js",
                "js\/chart.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "css\/content.css"
    ],
    "permissions": [
        ""
    ]
}