Prettify

Small extension that automatically make pages with JSON/XML/... content prettier.

What is Prettify?

Prettify is a Chrome extension developed by https://tiph.io, and its main feature is "Small extension that automatically make pages with JSON/XML/... content prettier.".

Extension Screenshots

screenshot

Download Prettify Extension CRX File

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

                        Quick and dirty WebExtension that automatically makes JSON pages good looking. Turns the boring-looking stock JSON rendering into a nice looking, exandable/collaspable view.

The beauty of it is that it automatically runs on every page that has its Content-type set to application/json, so you can forget you've ever installed it, and just enjoy cool-looking JSON pages !                    

Extension Basic Information

Name Prettify Prettify
ID emdbenifhkcjjilaliemafklfdnpckhk
Official URL https://chromewebstore.google.com/detail/prettify/emdbenifhkcjjilaliemafklfdnpckhk
Description Small extension that automatically make pages with JSON/XML/... content prettier.
File Size 13.27 KB
Installation Count 1,049
Current Version 1.0.1
Last Updated 2019-12-01
Publish Date 2019-11-27
Rating 5.00/5 Total 1 Ratings
Developer https://tiph.io
Email [email protected]
Payment Type free
Privacy Policy Page URL https://edt.tiph.io/privacy.html
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Prettify",
    "version": "1.0.1",
    "description": "Small extension that automatically make pages with JSON\/XML\/... content prettier.",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "inject.js"
            ],
            "run_at": "document_start"
        }
    ]
}