Nested Object JSON Parser

Makes JSON easy to read. Open source.

Wat is Nested Object JSON Parser?

Nested Object JSON Parser is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Makes JSON easy to read. Open source.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Nested Object JSON Parser

Download Nested Object JSON Parser-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Nested Object JSON Parser Nested Object JSON Parser
ID gfpiiddjejppjlaegjhfommdfjdfkfop
Officiële URL https://chromewebstore.google.com/detail/nested-object-json-parser/gfpiiddjejppjlaegjhfommdfjdfkfop
Beschrijving Makes JSON easy to read. Open source.
Bestandsgrootte 21.21 KB
Aantal Installaties 1,545
Huidige Versie 1.0
Laatst Bijgewerkt 2019-04-28
Publicatiedatum 2019-04-23
Ontwikkelaar Unknown
Betalingswijze free
Ondersteunde Talen 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": [
        "*:\/\/*\/*",
        ""
    ]
}