JSONVue

Validate and view JSON documents

Qu'est-ce que JSONVue ?

JSONVue est une extension Chrome développée par gildas, et sa fonction principale est "Validate and view JSON documents".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

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

Téléchargez les fichiers d'extension JSONVue 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

                        JSONView port for Chrome.

Original firefox extension is here: http://benhollis.net/software/jsonview/ 

Notes: 
 - JSON is validated using a client-side javascript implementation of JSONLint (http://github.com/zaach/jsonlint)
 - this extension displays JSON text compliant with rfc 4627 (http://www.ietf.org/rfc/rfc4627.txt)
 - The stylesheet used to display the JSON content can be customized
 - JSONP (http://en.wikipedia.org/wiki/JSON#JSONP) is supported                    

Informations de Base sur l'Extension

Nom JSONVue JSONVue
ID chklaanhfefbnpoihckbnefhakgolnmc
URL Officiel https://chromewebstore.google.com/detail/jsonvue/chklaanhfefbnpoihckbnefhakgolnmc
Description Validate and view JSON documents
Taille du Fichier 181 KB
Nombre d'Installations 1,257,839
Version Actuelle 0.2.3
Dernière Mise à Jour 2023-11-29
Date de Publication 2017-01-06
Évaluation 4.54/5 Total 2651 Évaluations
Développeur gildas
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/gildas-lormeau/JSONVue
URL de la Page d'Aide https://github.com/gildas-lormeau/JSONVue/issues
URL de la Page de Politique de Confidentialité https://github.com/gildas-lormeau/SingleFile/blob/master/privacy.md
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSONVue",
    "icons": {
        "16": "resources\/jsonvue16.png",
        "48": "resources\/jsonvue48.png",
        "128": "resources\/jsonvue128.png"
    },
    "version": "0.2.3",
    "description": "Validate and view JSON documents",
    "options_ui": {
        "browser_style": true,
        "page": "options.html",
        "open_in_tab": false
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "manifest_version": 3
}