jsonv

JSON viewer

What is jsonv?

jsonv is a Chrome extension developed by https://kganser.com, and its main feature is "JSON viewer".

Extension Screenshots

screenshot

Download jsonv Extension CRX File

Download jsonv 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

                        Jsonv formats JSON files for easy viewing in Chrome.

Features:
• Collapsible objects and arrays
• Inspector-style colors
• Console access via `json` variable
• Clickable links                    

Extension Basic Information

Name jsonv jsonv
ID cgffjielkgfdhoiloknkfcimejepaodg
Official URL https://chromewebstore.google.com/detail/jsonv/cgffjielkgfdhoiloknkfcimejepaodg
Description JSON viewer
File Size 12.7 KB
Installation Count 272
Current Version 0.12
Last Updated 2022-05-02
Publish Date 2018-03-04
Rating 5.00/5 Total 4 Ratings
Developer https://kganser.com
Email [email protected]
Payment Type free
Extension Website http://jsonv.kganser.com
Privacy Policy Page URL https://raw.githubusercontent.com/kganser/jsonv/master/privacy.txt
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "jsonv",
    "description": "JSON viewer",
    "offline_enabled": true,
    "icons": {
        "128": "jsonv128.png",
        "48": "jsonv48.png",
        "16": "jsonv16.png"
    },
    "version": "0.12",
    "permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/",
        "ftp:\/\/*\/"
    ],
    "web_accessible_resources": [
        "jsonv.css"
    ],
    "background": {
        "scripts": [
            "jsonv.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "jsonv.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_end"
        }
    ]
}