Preloaded JSON viewer

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

Wat is Preloaded JSON viewer?

Preloaded JSON viewer is een Chrome-extensie ontwikkeld door Dipak, en de belangrijkste functie is "View all JSON information loaded in a webpage inside a script tag with type text/json".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Preloaded JSON viewer

Download Preloaded JSON viewer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

 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                    

Basisinformatie over de Extensie

Naam Preloaded JSON viewer Preloaded JSON viewer
ID ljblpbnhpnnkjkeilohccngpjmjhifkj
Officiële URL https://chromewebstore.google.com/detail/preloaded-json-viewer/ljblpbnhpnnkjkeilohccngpjmjhifkj
Beschrijving View all JSON information loaded in a webpage inside a script tag with type text/json
Bestandsgrootte 47.73 KB
Aantal Installaties 22
Huidige Versie 1.2
Laatst Bijgewerkt 2019-05-03
Publicatiedatum 2019-04-29
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Dipak
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/dipakchandranp/preloaded-json-viewer
Help Pagina-URL https://github.com/dipakchandranp/preloaded-json-viewer/issues
Ondersteunde Talen 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
}