Prettify

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

Was ist Prettify?

Prettify ist eine Chrome-Erweiterung, die von https://tiph.io entwickelt wurde, und ihr Hauptmerkmal ist "Small extension that automatically make pages with JSON/XML/... content prettier.".

Erweiterungsscreenshots

screenshot

Prettify-Erweiterungs-CRX-Datei herunterladen

Laden Sie Prettify-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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 !                    

Grundlegende Informationen zur Erweiterung

Name Prettify Prettify
ID emdbenifhkcjjilaliemafklfdnpckhk
Offizielle URL https://chromewebstore.google.com/detail/prettify/emdbenifhkcjjilaliemafklfdnpckhk
Beschreibung Small extension that automatically make pages with JSON/XML/... content prettier.
Dateigröße 13.27 KB
Installationsanzahl 1,049
Aktuelle Version 1.0.1
Letztes Update 2019-12-01
Veröffentlichungsdatum 2019-11-27
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://tiph.io
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://edt.tiph.io/privacy.html
Unterstützte Sprachen 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"
        }
    ]
}