JSON Viewer Pro

A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅…

Qu'est-ce que JSON Viewer Pro ?

JSON Viewer Pro est une extension Chrome développée par Rahul Baruri, et sa fonction principale est "A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅…".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

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

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

                        A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options.

 ✅ Completely Free and no advertisements.

Core features:

✅ Beautify JSON response from API
✅ Visual representation of JSON with Chart
✅ Depth traversing of JSON property using breadcrumbs
✅ Write custom JSON in Input area
✅ Import local JSON file
✅ Download JSON file using Context Menu
✅ URL filters
✅ Change Themes
✅ Custom CSS
✅ Cool User Interface.
✅ Copy property and value
✅ Access JSON in your console using only json keyword                    

Informations de Base sur l'Extension

Nom JSON Viewer Pro JSON Viewer Pro
ID eifflpmocdbdmepbjaopkkhbfmdgijcc
URL Officiel https://chromewebstore.google.com/detail/json-viewer-pro/eifflpmocdbdmepbjaopkkhbfmdgijcc
Description A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅…
Taille du Fichier 338 KB
Nombre d'Installations 385,193
Version Actuelle 1.0.1
Dernière Mise à Jour 2021-03-21
Date de Publication 2020-10-04
Évaluation 4.77/5 Total 111 Évaluations
Développeur Rahul Baruri
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/rbrahul/Awesome-JSON-Viewer
URL de la Page d'Aide https://github.com/rbrahul/Awesome-JSON-Viewer
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON Viewer Pro",
    "short_name": "JSON Viewer",
    "offline_enabled": true,
    "version": "1.0.1",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icons\/icon-16.png",
        "38": "images\/icons\/icon-32.png",
        "128": "images\/icons\/icon-128.png"
    },
    "background": {
        "scripts": [
            "\/js\/background.js"
        ]
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "\/js\/contentScript.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_icon": "images\/icons\/icon-16.png"
    },
    "permissions": [
        "*:\/\/*\/*",
        "contextMenus"
    ],
    "web_accessible_resources": [
        "\/js\/main.js",
        "\/css\/main.css",
        "\/css\/themes\/mdn.css",
        "options.html",
        "images\/icons\/gear.png"
    ]
}