JSON Viewer

Makes JSON response easy to read.

What is JSON Viewer?

JSON Viewer is a Chrome extension developed by https://timleland.com, and its main feature is "Makes JSON response easy to read.".

Extension Screenshots

screenshot

Download JSON Viewer Extension CRX File

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

                        Open source JSON viewer
FEATURES
   •   JSON & JSONP support
   •   Syntax highlighting
   •   Collapsible trees, with indent guides
   •   Clickable URLs
   •   Toggle between raw and parsed JSON

Source: https://github.com/timleland/Json-Viewer-Extension                    

Extension Basic Information

Name JSON Viewer JSON Viewer
ID bbdgkoocgebebgihgkhfhlpekclhmfem
Official URL https://chromewebstore.google.com/detail/json-viewer/bbdgkoocgebebgihgkhfhlpekclhmfem
Description Makes JSON response easy to read.
File Size 59.51 KB
Installation Count 4,749
Current Version 2.0.0
Last Updated 2022-02-24
Publish Date 2020-09-13
Rating 5.00/5 Total 1 Ratings
Developer https://timleland.com
Email [email protected]
Payment Type free
Extension Website https://timleland.com/json-viewer-extension/
Help Page URL https://timleland.com/contact/
Privacy Policy Page URL https://t.ly/privacy
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "JSON Viewer",
    "homepage_url": "https:\/\/timleland.com\/json-viewer-extension",
    "description": "Makes JSON response easy to read.",
    "version": "2.0.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "vendor\/jquery-3.3.1.min.js",
                "vendor\/json-viewer\/jquery.json-viewer.js",
                "js\/main.js"
            ],
            "css": [
                "vendor\/json-viewer\/jquery.json-viewer.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}