JSONVue

Validate and view JSON documents

Cos'è JSONVue?

JSONVue è un'estensione di Chrome sviluppata da gildas, e la sua funzione principale è "Validate and view JSON documents".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione JSONVue

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

                        JSONView port for Chrome.

Original firefox extension is here: http://benhollis.net/software/jsonview/ 

Notes: 
 - JSON is validated using a client-side javascript implementation of JSONLint (http://github.com/zaach/jsonlint)
 - this extension displays JSON text compliant with rfc 4627 (http://www.ietf.org/rfc/rfc4627.txt)
 - The stylesheet used to display the JSON content can be customized
 - JSONP (http://en.wikipedia.org/wiki/JSON#JSONP) is supported                    

Informazioni di Base sull'Estensione

Nome JSONVue JSONVue
ID chklaanhfefbnpoihckbnefhakgolnmc
URL Ufficiale https://chromewebstore.google.com/detail/jsonvue/chklaanhfefbnpoihckbnefhakgolnmc
Descrizione Validate and view JSON documents
Dimensione del File 181 KB
Conteggio Installazioni 1,257,839
Versione Corrente 0.2.3
Ultimo Aggiornamento 2023-11-29
Data di Pubblicazione 2017-01-06
Valutazione 4.54/5 Totale 2651 Valutazioni
Sviluppatore gildas
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/gildas-lormeau/JSONVue
URL della Pagina di Aiuto https://github.com/gildas-lormeau/JSONVue/issues
URL della Pagina della Politica sulla Privacy https://github.com/gildas-lormeau/SingleFile/blob/master/privacy.md
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSONVue",
    "icons": {
        "16": "resources\/jsonvue16.png",
        "48": "resources\/jsonvue48.png",
        "128": "resources\/jsonvue128.png"
    },
    "version": "0.2.3",
    "description": "Validate and view JSON documents",
    "options_ui": {
        "browser_style": true,
        "page": "options.html",
        "open_in_tab": false
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "manifest_version": 3
}