JSON Explorer

Makes JSON responses easy to explore.

Co to jest JSON Explorer?

JSON Explorer to rozszerzenie Chrome opracowane przez https://watchthis.page, a jego główną funkcją jest „Makes JSON responses easy to explore.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia JSON Explorer

Pobierz pliki rozszerzeń JSON Explorer 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

                        JSON Explorer automatically formats messy responses and helps you navigate them. 
Besides expand/collapse, code highlighting, and clickable URLs it also provides: 

- Overview Chart: Allows you to explore the content through an interactive sunburst chart.
- URL Parameters: Displays URL parameters in an easy to read & edit format, and helps you load the new URL. 
- Image Previews: Displays a preview for image links at mouseover.                    

Podstawowe informacje o rozszerzeniu

Nazwa JSON Explorer JSON Explorer
ID kiaijfgpdkcbmpdaochmmhefpdmlebhb
Oficjalny URL https://chromewebstore.google.com/detail/json-explorer/kiaijfgpdkcbmpdaochmmhefpdmlebhb
Opis Makes JSON responses easy to explore.
Rozmiar pliku 129 KB
Liczba instalacji 91
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2020-12-10
Data Publikacji 2020-12-09
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper https://watchthis.page
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://watchthis.page/JSON-Explorer
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON Explorer",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "Makes JSON responses easy to explore.",
    "author": "https:\/\/watchthis.page",
    "homepage_url": "https:\/\/watchthis.page\/JSON-Explorer",
    "minimum_chrome_version": "21",
    "icons": {
        "128": "icons\/128.png",
        "32": "icons\/32.png"
    },
    "background": {
        "scripts": [
            "js\/vendor\/browser-polyfill.min.js",
            "js\/utils.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/vendor\/browser-polyfill.min.js",
                "js\/content.js",
                "js\/vendor\/d3.v5.min.js",
                "js\/chart.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "css\/content.css"
    ],
    "permissions": [
        ""
    ]
}