JSON Viewer

Port of Firefox's JSON Viewer

Cos'è JSON Viewer?

JSON Viewer è un'estensione di Chrome sviluppata da Rongjian Zhang, e la sua funzione principale è "Port of Firefox's JSON Viewer".

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

                        This is a port of Firefox's JSON Viewer

If you open a JSON file in the browser, it is parsed and given syntax highlighting. Arrays and objects are shown collapsed, and you can expand them using the "+" icons.

Source code:
https://github.com/pd4d10/json-viewer                    

Informazioni di Base sull'Estensione

Nome JSON Viewer JSON Viewer
ID efknglbfhoddmmfabeihlemgekhhnabb
URL Ufficiale https://chromewebstore.google.com/detail/json-viewer/efknglbfhoddmmfabeihlemgekhhnabb
Descrizione Port of Firefox's JSON Viewer
Dimensione del File 136 KB
Conteggio Installazioni 38,037
Versione Corrente 2.1.0
Ultimo Aggiornamento 2023-09-17
Data di Pubblicazione 2018-05-27
Valutazione 4.75/5 Totale 40 Valutazioni
Sviluppatore Rongjian Zhang
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/pd4d10/json-viewer
URL della Pagina di Aiuto https://github.com/pd4d10/json-viewer
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "JSON Viewer",
    "version": "2.1.0",
    "description": "Port of Firefox's JSON Viewer",
    "offline_enabled": true,
    "homepage_url": "https:\/\/github.com\/pd4d10\/json-viewer",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "dist\/content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage"
    ]
}