JSONView

View JSON documents in the browser.

Qu'est-ce que JSONView ?

JSONView est une extension Chrome développée par https://jsonview.com, et sa fonction principale est "View JSON documents in the browser.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension JSONView

Téléchargez les fichiers d'extension JSONView au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom JSONView JSONView
ID gmegofmjomhknnokphhckolhcffdaihd
URL Officiel https://chromewebstore.google.com/detail/jsonview/gmegofmjomhknnokphhckolhcffdaihd
Description View JSON documents in the browser.
Taille du Fichier 84.08 KB
Nombre d'Installations 212,006
Version Actuelle 2.6.1
Dernière Mise à Jour 2024-01-11
Date de Publication 2019-03-16
Évaluation 4.10/5 Total 29 Évaluations
Développeur https://jsonview.com
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://github.com/bhollis/jsonview/issues
Langues Prises en Charge 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"
}