JSONView

View JSON documents in the browser.

Was ist JSONView?

JSONView ist eine Chrome-Erweiterung, die von https://jsonview.com entwickelt wurde, und ihr Hauptmerkmal ist "View JSON documents in the browser.".

Erweiterungsscreenshots

screenshot

JSONView-Erweiterungs-CRX-Datei herunterladen

Laden Sie JSONView-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

                        Normally when encountering a JSON document (content type "application/json"), the browser simply shows plain text. With the JSONView extension, JSON documents are formatted, highlighted, and arrays and objects can be collapsed. Even if the JSON document contains errors, JSONView will still show the raw text. Once you've got JSONView installed, check out http://jsonview.com/example.json to see the extension in action!                    

Grundlegende Informationen zur Erweiterung

Name JSONView JSONView
ID gmegofmjomhknnokphhckolhcffdaihd
Offizielle URL https://chromewebstore.google.com/detail/jsonview/gmegofmjomhknnokphhckolhcffdaihd
Beschreibung View JSON documents in the browser.
Dateigröße 84.08 KB
Installationsanzahl 212,006
Aktuelle Version 2.6.1
Letztes Update 2024-01-11
Veröffentlichungsdatum 2019-03-16
Bewertung 4.10/5 Insgesamt 29 Bewertungen
Entwickler https://jsonview.com
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://github.com/bhollis/jsonview/issues
Unterstützte Sprachen id,de,en,fr,nl,tr,ca,es,it,hu,pt-BR,sv,cs,sr,bg,ru,uk,hi,zh-CN,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JSONView",
    "version": "2.6.1",
    "description": "__MSG_extensionDescription__",
    "author": "Benjamin Hollis",
    "homepage_url": "https:\/\/jsonview.com\/",
    "icons": {
        "32": "icon.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png",
        "256": "icon256.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "web_accessible_resources": [
        "viewer.css",
        "viewer.js"
    ],
    "default_locale": "en"
}