Virtual Json Viewer

JSON browser extension with virtual DOM, search and JQ filtering

Virtual Json Viewer란 무엇입니까?

Virtual Json Viewer은(는) PS에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "JSON browser extension with virtual DOM, search and JQ filtering"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Virtual Json Viewer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}