JSON Editor

A tool to view, edit, format, repair, query, transform, and validate JSON

¿Qué es JSON Editor?

JSON Editor es una extensión de Chrome desarrollada por croespino, y su función principal es "A tool to view, edit, format, repair, query, transform, and validate JSON".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión JSON Editor

Descarga archivos de extensión JSON Editor 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

                        Open web pages with JSON content or JSON files to view, edit, format, repair, query, transform, and validate JSON directly on the browser. 

Features:
* View JSON as a tree. The JSON tree view utilizes right-click to open the context menu, and double-click to start editing a key or value. It supports copy/paste from and to the system clipboard.
* View JSON as formatted text.
* View JSON as a table, for top-level arrays or nested arrays.
* Search and replace
* Undo and redo actions
* Edit the JSON keys, and values, copy, paste, duplicate, insert, or remove
* JSON formatting and minifying
* Query JSON with plain JavaScript or using the built-in form
* Sort, filter, and transform JSON
* Handle large JSON documents up to 512 MB

It uses the powerful https://github.com/josdejong/svelte-jsoneditor/ and the Manifest V3 for enhanced security, privacy, and performance.

Make sure to disable any other JSON viewing built-in into the browser or other JSON viewer extensions.                    

Información Básica de la Extensión

Nombre JSON Editor JSON Editor
ID jcamcakkifmbkjcfejgboieeliaomkab
URL Oficial https://chromewebstore.google.com/detail/json-editor/jcamcakkifmbkjcfejgboieeliaomkab
Descripción A tool to view, edit, format, repair, query, transform, and validate JSON
Tamaño del Archivo 380 KB
Cantidad de Instalaciones 484
Versión Actual 1.0
Última Actualización 2023-07-23
Fecha de Publicación 2023-07-23
Calificación 3.00/5 Total de 2 Calificaciones
Desarrollador croespino
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/croespino/browser-json-editor
URL de la Página de Política de Privacidad https://github.com/croespino/browser-json-editor/blob/master/PRIVACY.md
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "JSON Editor",
    "description": "A tool to view, edit, format, repair, query, transform, and validate JSON",
    "version": "1.0",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}