Seven JSON Viewer

Minimal JSON Viewer with JSON Path

¿Qué es Seven JSON Viewer?

Seven JSON Viewer es una extensión de Chrome desarrollada por https://reez.dev, y su función principal es "Minimal JSON Viewer with JSON Path".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Seven JSON Viewer

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

                        Minimal JSON Viewer with JSON Path Support.

Features
--------------
1. Syntax Highlighting
2. Collapsible tree for improved readability
3. Dark themed
4. Realtime JSON Path support
5. Multiple Themes

Note: 
This extension might have conflict with other JSON highlighters/beautifiers, like 'JSON Formatter', 'JSONView', 'Pretty JSON' and so on – Please, disable those before trying this for better experience.                    

Información Básica de la Extensión

Nombre Seven JSON Viewer Seven JSON Viewer
ID cfahdpkjihoomfomffdbmamapgdpohoe
URL Oficial https://chromewebstore.google.com/detail/seven-json-viewer/cfahdpkjihoomfomffdbmamapgdpohoe
Descripción Minimal JSON Viewer with JSON Path
Tamaño del Archivo 228 KB
Cantidad de Instalaciones 3,163
Versión Actual 5.0
Última Actualización 2022-07-27
Fecha de Publicación 2020-03-17
Calificación 4.50/5 Total de 8 Calificaciones
Desarrollador https://reez.dev
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://reez.dev/project/seven-json-viewer
URL de la Página de Ayuda https://reez.dev/project/seven-json-viewer#support
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Seven JSON Viewer",
    "description": "Minimal JSON Viewer with JSON Path",
    "short_name": "JSON Viewer",
    "version": "5.0",
    "offline_enabled": true,
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "content_security_policy": {
        "sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'none';"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "assets\/icon-16.png",
        "48": "assets\/icon-48.png",
        "128": "assets\/icon-128.png",
        "512": "assets\/icon-512.png"
    },
    "action": {
        "default_popup": "popup.html"
    }
}