JSON Viewer Pro

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

Cos'è JSON Viewer Pro?

JSON Viewer Pro è un'estensione di Chrome sviluppata da Rahul Baruri, e la sua funzione principale è "A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅…".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione JSON Viewer Pro

Scarica i file di estensione JSON Viewer Pro in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome JSON Viewer Pro JSON Viewer Pro
ID eifflpmocdbdmepbjaopkkhbfmdgijcc
URL Ufficiale https://chromewebstore.google.com/detail/json-viewer-pro/eifflpmocdbdmepbjaopkkhbfmdgijcc
Descrizione A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅…
Dimensione del File 338 KB
Conteggio Installazioni 385,193
Versione Corrente 1.0.1
Ultimo Aggiornamento 2021-03-21
Data di Pubblicazione 2020-10-04
Valutazione 4.77/5 Totale 111 Valutazioni
Sviluppatore Rahul Baruri
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/rbrahul/Awesome-JSON-Viewer
URL della Pagina di Aiuto https://github.com/rbrahul/Awesome-JSON-Viewer
Lingue Supportate 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"
    ]
}