JSON Explorer

Makes JSON responses easy to explore.

Cos'è JSON Explorer?

JSON Explorer è un'estensione di Chrome sviluppata da https://watchthis.page, e la sua funzione principale è "Makes JSON responses easy to explore.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione JSON Explorer

Scarica i file di estensione JSON Explorer 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

                        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.                    

Informazioni di Base sull'Estensione

Nome JSON Explorer JSON Explorer
ID kiaijfgpdkcbmpdaochmmhefpdmlebhb
URL Ufficiale https://chromewebstore.google.com/detail/json-explorer/kiaijfgpdkcbmpdaochmmhefpdmlebhb
Descrizione Makes JSON responses easy to explore.
Dimensione del File 129 KB
Conteggio Installazioni 91
Versione Corrente 1.0.1
Ultimo Aggiornamento 2020-12-10
Data di Pubblicazione 2020-12-09
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore https://watchthis.page
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://watchthis.page/JSON-Explorer
Lingue Supportate 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": [
        ""
    ]
}