Virtual Json Viewer

JSON browser extension with virtual DOM, search and JQ filtering

Virtual Json Viewer là gì?

Virtual Json Viewer là một tiện ích mở rộng Chrome được phát triển bởi PS, và tính năng chính của nó là "JSON browser extension with virtual DOM, search and JQ filtering".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Virtual Json Viewer

Tải xuống các tệp mở rộng Virtual Json Viewer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Virtual Json Viewer Virtual Json Viewer
ID cipnpfcceoapeahdgomheoecidglopld
URL Chính Thức https://chromewebstore.google.com/detail/virtual-json-viewer/cipnpfcceoapeahdgomheoecidglopld
Mô tả JSON browser extension with virtual DOM, search and JQ filtering
Kích Thước Tệp 547 KB
Số Lần Cài Đặt 970
Phiên Bản Hiện Tại 1.1.2
Cập Nhật Lần Cuối 2023-11-20
Ngày Phát Hành 2021-11-10
Đánh Giá 4.25/5 Tổng số 4 Đánh Giá
Nhà Phát Triển PS
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/paolosimone/virtual-json-viewer
URL Trang Trợ Giúp https://github.com/paolosimone/virtual-json-viewer/issues
URL Trang Chính Sách Bảo Mật https://raw.githubusercontent.com/paolosimone/virtual-json-viewer/main/assets/privacy-policy.txt
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}