Virtual Json Viewer

JSON browser extension with virtual DOM, search and JQ filtering

Virtual Json Viewerคืออะไร?

Virtual Json Viewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย PS และคุณลักษณะหลักของมันคือ "JSON browser extension with virtual DOM, search and JQ filtering"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Features
 - **Extremely fast** JSON rendering using virtual DOM
 - Full text search
 - JQ filtering
 - Customisable theme and settings
 - Prettify/minify
 - Raw JSON viewer
 - Download JSON

Keyboard shortcuts 
https://github.com/paolosimone/virtual-json-viewer#keyboard-shortcuts

FAQ
https://github.com/paolosimone/virtual-json-viewer#faq

Bugs and suggestions
https://github.com/paolosimone/virtual-json-viewer/issues

Note: JQ filtering availability relies on WebAssembly and is subject to website Content Security Policy                    

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

ชื่อ Virtual Json Viewer Virtual Json Viewer
ID cipnpfcceoapeahdgomheoecidglopld
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/virtual-json-viewer/cipnpfcceoapeahdgomheoecidglopld
คำอธิบาย JSON browser extension with virtual DOM, search and JQ filtering
ขนาดไฟล์ 547 KB
จำนวนการติดตั้ง 970
เวอร์ชันปัจจุบัน 1.1.2
อัปเดตครั้งล่าสุด 2023-11-20
วันที่เผยแพร่ 2021-11-10
คะแนน 4.25/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา PS
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/paolosimone/virtual-json-viewer
URL หน้าช่วยเหลือ https://github.com/paolosimone/virtual-json-viewer/issues
URL หน้านโยบายความเป็นส่วนตัว https://raw.githubusercontent.com/paolosimone/virtual-json-viewer/main/assets/privacy-policy.txt
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Virtual Json Viewer",
    "version": "1.1.2",
    "description": "JSON browser extension with virtual DOM, search and JQ filtering",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "static\/js\/background.js"
    },
    "content_scripts": [
        {
            "js": [
                "static\/js\/content.js"
            ],
            "run_at": "document_start",
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "logo\/16.png",
        "48": "logo\/48.png",
        "192": "logo\/192.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "jq.wasm",
                "logo\/16.png",
                "static\/css\/content.css",
                "loading.gif"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_icon": {
            "192": "logo\/192.png"
        },
        "default_title": "Virtual Json Viewer"
    },
    "options_ui": {
        "page": "options.html"
    }
}