Basic JSON Formatter

Adds a page action to pretty-print JSON

What is Basic JSON Formatter?

Basic JSON Formatter is a Chrome extension developed by Dr. McKay, and its main feature is "Adds a page action to pretty-print JSON".

Extension Screenshots

screenshot
screenshot

Download Basic JSON Formatter Extension CRX File

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

                        This add-on for Chrome adds an action to the browser toolbar, enabling you to pretty-print the contents of JSON pages with a single click.

Unlike similar add-ons, this add-on does not add a fancy editor or colors or collapsibility or anything. The page after using this formatter remains valid JSON that can be copied and pasted somewhere else; it simply contains whitespace after formatting.                    

Extension Basic Information

Name Basic JSON Formatter Basic JSON Formatter
ID ceomfncodjlgpdebgjlbpcibgbcolfln
Official URL https://chromewebstore.google.com/detail/basic-json-formatter/ceomfncodjlgpdebgjlbpcibgbcolfln
Description Adds a page action to pretty-print JSON
File Size 222 KB
Installation Count 483
Current Version 3.0.0
Last Updated 2022-07-07
Publish Date 2021-05-27
Rating 5.00/5 Total 2 Ratings
Developer Dr. McKay
Email [email protected]
Payment Type free
Extension Website https://github.com/DoctorMcKay/firefox-json-formatter
Help Page URL https://github.com/DoctorMcKay/firefox-json-formatter/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Basic JSON Formatter",
    "version": "3.0.0",
    "description": "Adds a page action to pretty-print JSON",
    "icons": {
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": {
            "48": "img\/icon-48.png",
            "128": "img\/icon-128.png"
        },
        "default_title": "Format JSON",
        "default_popup": "popups\/no_json.html"
    },
    "options_ui": {
        "page": "options_ui\/options.html",
        "browser_style": true
    }
}