JSON Explorer

Makes JSON responses easy to explore.

Apa itu JSON Explorer?

JSON Explorer adalah ekstensi Chrome yang dikembangkan oleh https://watchthis.page, dan fitur utamanya adalah "Makes JSON responses easy to explore.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi JSON Explorer

Unduh file ekstensi JSON Explorer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        JSON Explorer automatically formats messy responses and helps you navigate them. 
Besides expand/collapse, code highlighting, and clickable URLs it also provides: 

- Overview Chart: Allows you to explore the content through an interactive sunburst chart.
- URL Parameters: Displays URL parameters in an easy to read & edit format, and helps you load the new URL. 
- Image Previews: Displays a preview for image links at mouseover.                    

Informasi Dasar Ekstensi

Nama JSON Explorer JSON Explorer
ID kiaijfgpdkcbmpdaochmmhefpdmlebhb
URL Resmi https://chromewebstore.google.com/detail/json-explorer/kiaijfgpdkcbmpdaochmmhefpdmlebhb
Deskripsi Makes JSON responses easy to explore.
Ukuran File 129 KB
Jumlah Instalasi 91
Versi Saat Ini 1.0.1
Terakhir Diperbarui 2020-12-10
Tanggal Publikasi 2020-12-09
Penilaian 5.00/5 Total 2 Penilaian
Pengembang https://watchthis.page
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://watchthis.page/JSON-Explorer
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON Explorer",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "Makes JSON responses easy to explore.",
    "author": "https:\/\/watchthis.page",
    "homepage_url": "https:\/\/watchthis.page\/JSON-Explorer",
    "minimum_chrome_version": "21",
    "icons": {
        "128": "icons\/128.png",
        "32": "icons\/32.png"
    },
    "background": {
        "scripts": [
            "js\/vendor\/browser-polyfill.min.js",
            "js\/utils.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/vendor\/browser-polyfill.min.js",
                "js\/content.js",
                "js\/vendor\/d3.v5.min.js",
                "js\/chart.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "css\/content.css"
    ],
    "permissions": [
        ""
    ]
}