JSON Viewer

Makes JSON response easy to read.

Cos'è JSON Viewer?

JSON Viewer è un'estensione di Chrome sviluppata da https://timleland.com, e la sua funzione principale è "Makes JSON response easy to read.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione JSON Viewer

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

                        Open source JSON viewer
FEATURES
   •   JSON & JSONP support
   •   Syntax highlighting
   •   Collapsible trees, with indent guides
   •   Clickable URLs
   •   Toggle between raw and parsed JSON

Source: https://github.com/timleland/Json-Viewer-Extension                    

Informazioni di Base sull'Estensione

Nome JSON Viewer JSON Viewer
ID bbdgkoocgebebgihgkhfhlpekclhmfem
URL Ufficiale https://chromewebstore.google.com/detail/json-viewer/bbdgkoocgebebgihgkhfhlpekclhmfem
Descrizione Makes JSON response easy to read.
Dimensione del File 59.51 KB
Conteggio Installazioni 4,749
Versione Corrente 2.0.0
Ultimo Aggiornamento 2022-02-24
Data di Pubblicazione 2020-09-13
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://timleland.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://timleland.com/json-viewer-extension/
URL della Pagina di Aiuto https://timleland.com/contact/
URL della Pagina della Politica sulla Privacy https://t.ly/privacy
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "JSON Viewer",
    "homepage_url": "https:\/\/timleland.com\/json-viewer-extension",
    "description": "Makes JSON response easy to read.",
    "version": "2.0.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "vendor\/jquery-3.3.1.min.js",
                "vendor\/json-viewer\/jquery.json-viewer.js",
                "js\/main.js"
            ],
            "css": [
                "vendor\/json-viewer\/jquery.json-viewer.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}