JSON Visualizer

View JSON documents

What is JSON Visualizer?

JSON Visualizer is a Chrome extension developed by http://json2html.pradeep.in, and its main feature is "View JSON documents".

Extension Screenshots

screenshot

Download JSON Visualizer Extension CRX File

Download JSON Visualizer 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 Visualizer converts json string to simple human friendly view.
It is helpful to visualize your json text of your REST APIs. Just open your REST API url in chrome.                    

Extension Basic Information

Name JSON Visualizer JSON Visualizer
ID iefhgcbmammocejdgcfojnplekkgbjij
Official URL https://chrome.google.com/webstore/detail/json-visualizer/iefhgcbmammocejdgcfojnplekkgbjij
Description View JSON documents
File Size 23.67 KB
Installation Count 385
Current Version 1.0
Last Updated 2015-08-13
Publish Date 2015-08-13
Rating 4.00/5 Total 5 Ratings
Developer http://json2html.pradeep.in
Payment Type free
Extension Website http://json2html.pradeep.in/
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JSON Visualizer",
    "description": "View JSON documents",
    "version": "1.0",
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jsonview.js"
            ]
        }
    ]
}