JSON[B] Viewer

JSON[B] is a editor online web-based tool to view, edit, format, transform and diff JSON documents.

¿Qué es JSON[B] Viewer?

JSON[B] Viewer es una extensión de Chrome desarrollada por https://jsonb.online, y su función principal es "JSON[B] is a editor online web-based tool to view, edit, format, transform and diff JSON documents.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión JSON[B] Viewer

Descarga archivos de extensión JSON[B] 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

                        The most beautiful JSON tools that your eyes have ever seen.
It is a Chrome extension for JSON.

Notes:
* This extension might crash with other JSON highlighters/formatters, you may need to disable them
* To highlight local files and incognito tabs you have to manually enable these options on the extensions page
* Sometimes when the plugin updates chrome leaves the old background process running and revokes some options, like the access to local files. When this happen just recheck the option that everything will work again
* Works on local files (if you enable this in chrome://extensions).                    

Información Básica de la Extensión

Nombre JSON[B] Viewer JSON[B] Viewer
ID jnhbjoikcefpmjiicnmgncglcjeefomk
URL Oficial https://chromewebstore.google.com/detail/jsonb-viewer/jnhbjoikcefpmjiicnmgncglcjeefomk
Descripción JSON[B] is a editor online web-based tool to view, edit, format, transform and diff JSON documents.
Tamaño del Archivo 17.4 KB
Cantidad de Instalaciones 150
Versión Actual 2.1.0
Última Actualización 2021-09-02
Fecha de Publicación 2021-09-02
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador https://jsonb.online
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.jsonb.online
URL de la Página de Ayuda https://www.jsonb.online
URL de la Página de Política de Privacidad https://www.jsonb.online/legal/privacy
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON[B] Viewer",
    "version": "2.1.0",
    "manifest_version": 2,
    "author": "JSON[B] ",
    "description": "JSON[B] is a editor online web-based tool to view, edit, format, transform and diff JSON documents.",
    "homepage_url": "https:\/\/www.jsonb.online",
    "minimum_chrome_version": "21",
    "icons": {
        "128": "assets\/icons\/128.png",
        "32": "assets\/icons\/32.png",
        "16": "assets\/icons\/16.png"
    },
    "web_accessible_resources": [],
    "offline_enabled": true,
    "omnibox": {
        "keyword": "jsonb"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "assets\/js\/viewer.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "assets\/js\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "*:\/\/*\/*",
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'; frame-src 'self' https:\/\/www.jsonb.online"
}