Prettify

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

Cos'è Prettify?

Prettify è un'estensione di Chrome sviluppata da https://tiph.io, e la sua funzione principale è "Small extension that automatically make pages with JSON/XML/... content prettier.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Prettify

Scarica i file di estensione Prettify in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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 !                    

Informazioni di Base sull'Estensione

Nome Prettify Prettify
ID emdbenifhkcjjilaliemafklfdnpckhk
URL Ufficiale https://chromewebstore.google.com/detail/prettify/emdbenifhkcjjilaliemafklfdnpckhk
Descrizione Small extension that automatically make pages with JSON/XML/... content prettier.
Dimensione del File 13.27 KB
Conteggio Installazioni 1,049
Versione Corrente 1.0.1
Ultimo Aggiornamento 2019-12-01
Data di Pubblicazione 2019-11-27
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://tiph.io
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://edt.tiph.io/privacy.html
Lingue Supportate 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"
        }
    ]
}