JSON Viewer

Makes JSON response easy to read.

Wat is JSON Viewer?

JSON Viewer is een Chrome-extensie ontwikkeld door https://timleland.com, en de belangrijkste functie is "Makes JSON response easy to read.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie JSON Viewer

Download 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

                        Open source JSON viewer
FEATURES
   •   JSON & JSONP support
   •   Syntax highlighting
   •   Collapsible trees, with indent guides
   •   Clickable URLs
   •   Toggle between raw and parsed JSON

Source: https://github.com/timleland/Json-Viewer-Extension                    

Basisinformatie over de Extensie

Naam JSON Viewer JSON Viewer
ID bbdgkoocgebebgihgkhfhlpekclhmfem
Officiële URL https://chromewebstore.google.com/detail/json-viewer/bbdgkoocgebebgihgkhfhlpekclhmfem
Beschrijving Makes JSON response easy to read.
Bestandsgrootte 59.51 KB
Aantal Installaties 4,749
Huidige Versie 2.0.0
Laatst Bijgewerkt 2022-02-24
Publicatiedatum 2020-09-13
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://timleland.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://timleland.com/json-viewer-extension/
Help Pagina-URL https://timleland.com/contact/
URL van de Privacybeleid Pagina https://t.ly/privacy
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "JSON Viewer",
    "homepage_url": "https:\/\/timleland.com\/json-viewer-extension",
    "description": "Makes JSON response easy to read.",
    "version": "2.0.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "vendor\/jquery-3.3.1.min.js",
                "vendor\/json-viewer\/jquery.json-viewer.js",
                "js\/main.js"
            ],
            "css": [
                "vendor\/json-viewer\/jquery.json-viewer.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}