JSONView

View JSON documents in the browser.

JSONViewคืออะไร?

JSONView เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://jsonview.com และคุณลักษณะหลักของมันคือ "View JSON documents in the browser."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย JSONView

ดาวน์โหลดไฟล์ส่วนขยาย JSONView ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ JSONView JSONView
ID gmegofmjomhknnokphhckolhcffdaihd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/jsonview/gmegofmjomhknnokphhckolhcffdaihd
คำอธิบาย View JSON documents in the browser.
ขนาดไฟล์ 84.08 KB
จำนวนการติดตั้ง 212,006
เวอร์ชันปัจจุบัน 2.6.1
อัปเดตครั้งล่าสุด 2024-01-11
วันที่เผยแพร่ 2019-03-16
คะแนน 4.10/5 รวมทั้งหมด 29 คะแนน
ผู้พัฒนา https://jsonview.com
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/bhollis/jsonview/issues
ภาษาที่รองรับ 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"
}