JSON Formatter

Makes JSON easy to read. Open source.

What is JSON Formatter?

JSON Formatter is a Chrome extension developed by https://www.cafeboy.org, and its main feature is "Makes JSON easy to read. Open source.".

Extension Screenshots

screenshot
screenshot

Download JSON Formatter Extension CRX File

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

                        based on https://github.com/callumlocke/json-formatter
add force to return application/json content-type action;
change the font;
fixed JSONP leading semicolon bug;
dark mode.                    

Extension Basic Information

Name JSON Formatter JSON Formatter
ID cfaihfocdnniaholfnjcemnfhcjchohb
Official URL https://chromewebstore.google.com/detail/json-formatter/cfaihfocdnniaholfnjcemnfhcjchohb
Description Makes JSON easy to read. Open source.
File Size 30.93 KB
Installation Count 12,295
Current Version 0.6.0.3
Last Updated 2022-06-18
Publish Date 2020-05-10
Rating 4.43/5 Total 21 Ratings
Developer https://www.cafeboy.org
Email [email protected]
Payment Type free
Extension Website https://github.com/jumkey/json-formatter
Help Page URL https://github.com/jumkey/json-formatter/issues
Privacy Policy Page URL https://www.cafeboy.org/privacy.html
Supported Languages en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON Formatter",
    "version": "0.6.0.3",
    "manifest_version": 2,
    "description": "Makes JSON easy to read. Open source.",
    "homepage_url": "https:\/\/github.com\/jumkey\/json-formatter",
    "minimum_chrome_version": "21",
    "icons": {
        "128": "icons\/128.png",
        "32": "icons\/32.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_title": "__MSG_reload__"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        ""
    ]
}