JSONView

View JSON documents in the browser.

Cos'è JSONView?

JSONView è un'estensione di Chrome sviluppata da https://jsonview.com, e la sua funzione principale è "View JSON documents in the browser.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione JSONView

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

                        Normally when encountering a JSON document (content type "application/json"), the browser simply shows plain text. With the JSONView extension, JSON documents are formatted, highlighted, and arrays and objects can be collapsed. Even if the JSON document contains errors, JSONView will still show the raw text. Once you've got JSONView installed, check out http://jsonview.com/example.json to see the extension in action!                    

Informazioni di Base sull'Estensione

Nome JSONView JSONView
ID gmegofmjomhknnokphhckolhcffdaihd
URL Ufficiale https://chromewebstore.google.com/detail/jsonview/gmegofmjomhknnokphhckolhcffdaihd
Descrizione View JSON documents in the browser.
Dimensione del File 84.08 KB
Conteggio Installazioni 212,006
Versione Corrente 2.6.1
Ultimo Aggiornamento 2024-01-11
Data di Pubblicazione 2019-03-16
Valutazione 4.10/5 Totale 29 Valutazioni
Sviluppatore https://jsonview.com
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/bhollis/jsonview/issues
Lingue Supportate id,de,en,fr,nl,tr,ca,es,it,hu,pt-BR,sv,cs,sr,bg,ru,uk,hi,zh-CN,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JSONView",
    "version": "2.6.1",
    "description": "__MSG_extensionDescription__",
    "author": "Benjamin Hollis",
    "homepage_url": "https:\/\/jsonview.com\/",
    "icons": {
        "32": "icon.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png",
        "256": "icon256.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "web_accessible_resources": [
        "viewer.css",
        "viewer.js"
    ],
    "default_locale": "en"
}