Preloaded JSON viewer

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

Cos'è Preloaded JSON viewer?

Preloaded JSON viewer è un'estensione di Chrome sviluppata da Dipak, e la sua funzione principale è "View all JSON information loaded in a webpage inside a script tag with type text/json".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Preloaded JSON viewer

Scarica i file di estensione Preloaded JSON viewer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

 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                    

Informazioni di Base sull'Estensione

Nome Preloaded JSON viewer Preloaded JSON viewer
ID ljblpbnhpnnkjkeilohccngpjmjhifkj
URL Ufficiale https://chromewebstore.google.com/detail/preloaded-json-viewer/ljblpbnhpnnkjkeilohccngpjmjhifkj
Descrizione View all JSON information loaded in a webpage inside a script tag with type text/json
Dimensione del File 47.73 KB
Conteggio Installazioni 22
Versione Corrente 1.2
Ultimo Aggiornamento 2019-05-03
Data di Pubblicazione 2019-04-29
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Dipak
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/dipakchandranp/preloaded-json-viewer
URL della Pagina di Aiuto https://github.com/dipakchandranp/preloaded-json-viewer/issues
Lingue Supportate 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
}