JSONView

View JSON documents in the browser.

Apa itu JSONView?

JSONView adalah ekstensi Chrome yang dikembangkan oleh https://jsonview.com, dan fitur utamanya adalah "View JSON documents in the browser.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi JSONView

Unduh file ekstensi JSONView 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

                        Normally when encountering a JSON document (content type "application/json"), the browser simply shows plain text. With the JSONView extension, JSON documents are formatted, highlighted, and arrays and objects can be collapsed. Even if the JSON document contains errors, JSONView will still show the raw text. Once you've got JSONView installed, check out http://jsonview.com/example.json to see the extension in action!                    

Informasi Dasar Ekstensi

Nama JSONView JSONView
ID gmegofmjomhknnokphhckolhcffdaihd
URL Resmi https://chromewebstore.google.com/detail/jsonview/gmegofmjomhknnokphhckolhcffdaihd
Deskripsi View JSON documents in the browser.
Ukuran File 84.08 KB
Jumlah Instalasi 212,006
Versi Saat Ini 2.6.1
Terakhir Diperbarui 2024-01-11
Tanggal Publikasi 2019-03-16
Penilaian 4.10/5 Total 29 Penilaian
Pengembang https://jsonview.com
Email [email protected]
Tipe Pembayaran free
URL Halaman Bantuan https://github.com/bhollis/jsonview/issues
Bahasa yang Didukung id,de,en,fr,nl,tr,ca,es,it,hu,pt-BR,sv,cs,sr,bg,ru,uk,hi,zh-CN,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JSONView",
    "version": "2.6.1",
    "description": "__MSG_extensionDescription__",
    "author": "Benjamin Hollis",
    "homepage_url": "https:\/\/jsonview.com\/",
    "icons": {
        "32": "icon.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png",
        "256": "icon256.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "web_accessible_resources": [
        "viewer.css",
        "viewer.js"
    ],
    "default_locale": "en"
}