Nested Object JSON Parser

Makes JSON easy to read. Open source.

Cos'è Nested Object JSON Parser?

Nested Object JSON Parser è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Makes JSON easy to read. Open source.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Nested Object JSON Parser

Scarica i file di estensione Nested Object JSON Parser 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

                        Nested JSON Parser is an extension to format JSON content including nested json stringify objects                    

Informazioni di Base sull'Estensione

Nome Nested Object JSON Parser Nested Object JSON Parser
ID gfpiiddjejppjlaegjhfommdfjdfkfop
URL Ufficiale https://chromewebstore.google.com/detail/nested-object-json-parser/gfpiiddjejppjlaegjhfommdfjdfkfop
Descrizione Makes JSON easy to read. Open source.
Dimensione del File 21.21 KB
Conteggio Installazioni 1,545
Versione Corrente 1.0
Ultimo Aggiornamento 2019-04-28
Data di Pubblicazione 2019-04-23
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Nested Object JSON Parser",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Makes JSON easy to read. Open source.",
    "homepage_url": "https:\/\/github.com\/callumlocke\/json-formatter",
    "minimum_chrome_version": "21",
    "icons": {
        "128": "icons\/128.png",
        "32": "icons\/32.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "*:\/\/*\/*",
        ""
    ]
}