JSON Explorer

Makes JSON responses easy to explore.

Was ist JSON Explorer?

JSON Explorer ist eine Chrome-Erweiterung, die von https://watchthis.page entwickelt wurde, und ihr Hauptmerkmal ist "Makes JSON responses easy to explore.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

JSON Explorer-Erweiterungs-CRX-Datei herunterladen

Laden Sie JSON Explorer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        JSON Explorer automatically formats messy responses and helps you navigate them. 
Besides expand/collapse, code highlighting, and clickable URLs it also provides: 

- Overview Chart: Allows you to explore the content through an interactive sunburst chart.
- URL Parameters: Displays URL parameters in an easy to read & edit format, and helps you load the new URL. 
- Image Previews: Displays a preview for image links at mouseover.                    

Grundlegende Informationen zur Erweiterung

Name JSON Explorer JSON Explorer
ID kiaijfgpdkcbmpdaochmmhefpdmlebhb
Offizielle URL https://chromewebstore.google.com/detail/json-explorer/kiaijfgpdkcbmpdaochmmhefpdmlebhb
Beschreibung Makes JSON responses easy to explore.
Dateigröße 129 KB
Installationsanzahl 91
Aktuelle Version 1.0.1
Letztes Update 2020-12-10
Veröffentlichungsdatum 2020-12-09
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://watchthis.page
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://watchthis.page/JSON-Explorer
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON Explorer",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "Makes JSON responses easy to explore.",
    "author": "https:\/\/watchthis.page",
    "homepage_url": "https:\/\/watchthis.page\/JSON-Explorer",
    "minimum_chrome_version": "21",
    "icons": {
        "128": "icons\/128.png",
        "32": "icons\/32.png"
    },
    "background": {
        "scripts": [
            "js\/vendor\/browser-polyfill.min.js",
            "js\/utils.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/vendor\/browser-polyfill.min.js",
                "js\/content.js",
                "js\/vendor\/d3.v5.min.js",
                "js\/chart.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "css\/content.css"
    ],
    "permissions": [
        ""
    ]
}