JSON Viewer

Makes JSON response easy to read.

Qu'est-ce que JSON Viewer ?

JSON Viewer est une extension Chrome développée par https://timleland.com, et sa fonction principale est "Makes JSON response easy to read.".

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

                        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                    

Informations de Base sur l'Extension

Nom JSON Viewer JSON Viewer
ID bbdgkoocgebebgihgkhfhlpekclhmfem
URL Officiel https://chromewebstore.google.com/detail/json-viewer/bbdgkoocgebebgihgkhfhlpekclhmfem
Description Makes JSON response easy to read.
Taille du Fichier 59.51 KB
Nombre d'Installations 4,749
Version Actuelle 2.0.0
Dernière Mise à Jour 2022-02-24
Date de Publication 2020-09-13
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://timleland.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://timleland.com/json-viewer-extension/
URL de la Page d'Aide https://timleland.com/contact/
URL de la Page de Politique de Confidentialité https://t.ly/privacy
Langues Prises en Charge 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"
    }
}