JSON Viewer

Port of Firefox's JSON Viewer

Qu'est-ce que JSON Viewer ?

JSON Viewer est une extension Chrome développée par Rongjian Zhang, et sa fonction principale est "Port of Firefox's JSON Viewer".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension JSON Viewer

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

                        This is a port of Firefox's JSON Viewer

If you open a JSON file in the browser, it is parsed and given syntax highlighting. Arrays and objects are shown collapsed, and you can expand them using the "+" icons.

Source code:
https://github.com/pd4d10/json-viewer                    

Informations de Base sur l'Extension

Nom JSON Viewer JSON Viewer
ID efknglbfhoddmmfabeihlemgekhhnabb
URL Officiel https://chromewebstore.google.com/detail/json-viewer/efknglbfhoddmmfabeihlemgekhhnabb
Description Port of Firefox's JSON Viewer
Taille du Fichier 136 KB
Nombre d'Installations 38,037
Version Actuelle 2.1.0
Dernière Mise à Jour 2023-09-17
Date de Publication 2018-05-27
Évaluation 4.75/5 Total 40 Évaluations
Développeur Rongjian Zhang
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/pd4d10/json-viewer
URL de la Page d'Aide https://github.com/pd4d10/json-viewer
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "JSON Viewer",
    "version": "2.1.0",
    "description": "Port of Firefox's JSON Viewer",
    "offline_enabled": true,
    "homepage_url": "https:\/\/github.com\/pd4d10\/json-viewer",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "dist\/content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage"
    ]
}