JSONVue

Validate and view JSON documents

¿Qué es JSONVue?

JSONVue es una extensión de Chrome desarrollada por gildas, y su función principal es "Validate and view JSON documents".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión JSONVue

Descarga archivos de extensión JSONVue en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre JSONVue JSONVue
ID chklaanhfefbnpoihckbnefhakgolnmc
URL Oficial https://chromewebstore.google.com/detail/jsonvue/chklaanhfefbnpoihckbnefhakgolnmc
Descripción Validate and view JSON documents
Tamaño del Archivo 181 KB
Cantidad de Instalaciones 1,257,839
Versión Actual 0.2.3
Última Actualización 2023-11-29
Fecha de Publicación 2017-01-06
Calificación 4.54/5 Total de 2651 Calificaciones
Desarrollador gildas
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/gildas-lormeau/JSONVue
URL de la Página de Ayuda https://github.com/gildas-lormeau/JSONVue/issues
URL de la Página de Política de Privacidad https://github.com/gildas-lormeau/SingleFile/blob/master/privacy.md
Idiomas Soportados 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
}