JSON Viewer

Makes JSON response easy to read.

Apa itu JSON Viewer?

JSON Viewer adalah ekstensi Chrome yang dikembangkan oleh https://timleland.com, dan fitur utamanya adalah "Makes JSON response easy to read.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi JSON Viewer

Unduh file ekstensi JSON Viewer 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

                        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                    

Informasi Dasar Ekstensi

Nama JSON Viewer JSON Viewer
ID bbdgkoocgebebgihgkhfhlpekclhmfem
URL Resmi https://chromewebstore.google.com/detail/json-viewer/bbdgkoocgebebgihgkhfhlpekclhmfem
Deskripsi Makes JSON response easy to read.
Ukuran File 59.51 KB
Jumlah Instalasi 4,749
Versi Saat Ini 2.0.0
Terakhir Diperbarui 2022-02-24
Tanggal Publikasi 2020-09-13
Penilaian 5.00/5 Total 1 Penilaian
Pengembang https://timleland.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://timleland.com/json-viewer-extension/
URL Halaman Bantuan https://timleland.com/contact/
URL Halaman Kebijakan Privasi https://t.ly/privacy
Bahasa yang Didukung 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"
    }
}