Preloaded JSON viewer

View all JSON information loaded in a webpage inside a script tag with type text/json

¿Qué es Preloaded JSON viewer?

Preloaded JSON viewer es una extensión de Chrome desarrollada por Dipak, y su función principal es "View all JSON information loaded in a webpage inside a script tag with type text/json".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Preloaded JSON viewer

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

 Web site is client-side rendered using React. We normally load data over HTTPS using our syncer architecture, but to avoid the extra roundtrip for the first screen that’s displayed, we embed it into the initial HTML response. Once the server has loaded the data that the client will need¹, it outputs it using a simple 

This chrome plugin will help to see the data loaded into page like this, to help ease debugging while development and testing                    

Información Básica de la Extensión

Nombre Preloaded JSON viewer Preloaded JSON viewer
ID ljblpbnhpnnkjkeilohccngpjmjhifkj
URL Oficial https://chromewebstore.google.com/detail/preloaded-json-viewer/ljblpbnhpnnkjkeilohccngpjmjhifkj
Descripción View all JSON information loaded in a webpage inside a script tag with type text/json
Tamaño del Archivo 47.73 KB
Cantidad de Instalaciones 22
Versión Actual 1.2
Última Actualización 2019-05-03
Fecha de Publicación 2019-04-29
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Dipak
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/dipakchandranp/preloaded-json-viewer
URL de la Página de Ayuda https://github.com/dipakchandranp/preloaded-json-viewer/issues
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Preloaded JSON viewer",
    "version": "1.2",
    "description": "View all JSON information loaded in a webpage inside a script tag with type text\/json",
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "JSON viewer",
        "default_icons": {
            "16": "images\/16.png",
            "32": "images\/32.png",
            "48": "images\/64.png",
            "128": "images\/128.png"
        }
    },
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/64.png",
        "128": "images\/128.png"
    },
    "manifest_version": 2
}