Beautify JSON

Pretty print collapsible JSON

What is Beautify JSON?

Beautify JSON is a Chrome extension developed by https://nopecha.com, and its main feature is "Pretty print collapsible JSON".

Extension Screenshots

screenshot

Download Beautify JSON Extension CRX File

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

                        Converts webpages displaying JSON text into interactive JSON, similar to how Firefox browsers and Chrome devtools display JSON data.                    

Extension Basic Information

Name Beautify JSON Beautify JSON
ID mobfcgfeagjbajejjnblfeceageepecj
Official URL https://chromewebstore.google.com/detail/beautify-json/mobfcgfeagjbajejjnblfeceageepecj
Description Pretty print collapsible JSON
File Size 11.18 KB
Installation Count 75
Current Version 0.1.1
Last Updated 2023-10-27
Publish Date 2022-07-09
Developer https://nopecha.com
Email [email protected]
Payment Type free
Privacy Policy Page URL https://www.nopecha.com/privacy
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Beautify JSON",
    "manifest_version": 3,
    "version": "0.1.1",
    "description": "Pretty print collapsible JSON",
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": false,
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon\/16.png",
        "32": "icon\/32.png",
        "48": "icon\/48.png",
        "128": "icon\/128.png"
    }
}