Nested Object JSON Parser

Makes JSON easy to read. Open source.

Co to jest Nested Object JSON Parser?

Nested Object JSON Parser to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Makes JSON easy to read. Open source.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Nested Object JSON Parser

Pobierz pliki rozszerzeń Nested Object JSON Parser w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Nested Object JSON Parser Nested Object JSON Parser
ID gfpiiddjejppjlaegjhfommdfjdfkfop
Oficjalny URL https://chromewebstore.google.com/detail/nested-object-json-parser/gfpiiddjejppjlaegjhfommdfjdfkfop
Opis Makes JSON easy to read. Open source.
Rozmiar pliku 21.21 KB
Liczba instalacji 1,545
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2019-04-28
Data Publikacji 2019-04-23
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki 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": [
        "*:\/\/*\/*",
        ""
    ]
}