JSON Viewer React

JSON viewer built using ReactJS. View full JSON paths on hover, copy full paths or path values, and toggle collapse of all objects.

JSON Viewer Reactคืออะไร?

JSON Viewer React เป็นส่วนขยายของ Chrome ที่พัฒนาโดย seeto.alexander และคุณลักษณะหลักของมันคือ "JSON viewer built using ReactJS. View full JSON paths on hover, copy full paths or path values, and toggle collapse of all objects."

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        JSON viewer built using ReactJS. View full JSON paths on hover, copy full paths or path values, and toggle collapse of all objects.                    

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

ชื่อ JSON Viewer React JSON Viewer React
ID icmodedamhnefjjpoiiajlpeldehdofi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/json-viewer-react/icmodedamhnefjjpoiiajlpeldehdofi
คำอธิบาย JSON viewer built using ReactJS. View full JSON paths on hover, copy full paths or path values, and toggle collapse of all objects.
ขนาดไฟล์ 882 KB
จำนวนการติดตั้ง 529
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2022-11-13
วันที่เผยแพร่ 2019-03-08
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา seeto.alexander
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ASeeto/json-viewer-react
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "JSON viewer built using ReactJS. View full JSON paths on hover, copy full paths or path values, and toggle collapse of all objects.",
    "version": "1.0.2",
    "name": "JSON Viewer React",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "json-viewer-react-icon-16.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.bundle.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "json-viewer-react-icon-16.png",
        "48": "json-viewer-react-icon-48.png",
        "128": "json-viewer-react-icon-128.png"
    },
    "permissions": [
        "storage",
        "*:\/\/*\/*",
        ""
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}