JSON Hero

A beautiful JSON explorer packed with features

JSON Heroคืออะไร?

JSON Hero เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://jsonhero.io และคุณลักษณะหลักของมันคือ "A beautiful JSON explorer packed with features"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        JSON Hero is an open-source, beautiful JSON explorer for the web that lets you browse, search and navigate your JSON files at speed.

The JSON Hero Chrome extension allows you to quickly send JSON to view in JSON Hero. Or turn on *auto-mode and any pure JSON responses in Chrome will be transformed into a JSON Hero view.

This extension will also allow you to send JSON from a Github file or a Firestore document right to JSON Hero. Just activate the extension in the toolbar whenever you are viewing a JSON GitHub file or a Firestore document in the Firestore console and they'll open in JSON Hero.

* By turning on auto-mode any pure JSON responses will be automatically sent to jsonhero.io. If you are running a custom instance of JSON Hero, you can change the server URL in the extension settings.                    

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

ชื่อ JSON Hero JSON Hero
ID dneionnnnjnofppmhcccbiaklandilch
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/json-hero/dneionnnnjnofppmhcccbiaklandilch
คำอธิบาย A beautiful JSON explorer packed with features
ขนาดไฟล์ 868 KB
จำนวนการติดตั้ง 1,665
เวอร์ชันปัจจุบัน 0.0.1
อัปเดตครั้งล่าสุด 2022-06-05
วันที่เผยแพร่ 2022-06-04
คะแนน 4.43/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา https://jsonhero.io
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://jsonhero.io
URL หน้านโยบายความเป็นส่วนตัว https://jsonhero.io/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "JSON Hero",
    "description": "A beautiful JSON explorer packed with features",
    "version": "0.0.1",
    "author": "Eric Allam",
    "options_page": "options.html",
    "background": {
        "service_worker": "build\/background.js"
    },
    "action": {
        "default_icon": {
            "16": "icon-16.png",
            "24": "icon-24.png",
            "32": "icon-32.png"
        }
    },
    "icons": {
        "512": "icon-512.png",
        "128": "icon-128.png",
        "48": "icon-48.png",
        "32": "icon-32.png",
        "16": "icon-16.png"
    },
    "permissions": [
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "build\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [],
            "matches": []
        }
    ]
}