Virtual Json Viewer

JSON browser extension with virtual DOM, search and JQ filtering

Co je Virtual Json Viewer?

Virtual Json Viewer je rozšíření Chrome vyvinuté PS, a jeho hlavní funkcí je „JSON browser extension with virtual DOM, search and JQ filtering“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Virtual Json Viewer

Stáhněte si soubory rozšíření Virtual Json Viewer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Virtual Json Viewer Virtual Json Viewer
ID cipnpfcceoapeahdgomheoecidglopld
Oficiální URL https://chromewebstore.google.com/detail/virtual-json-viewer/cipnpfcceoapeahdgomheoecidglopld
Popis JSON browser extension with virtual DOM, search and JQ filtering
Velikost souboru 547 KB
Počet instalací 970
Aktuální Verze 1.1.2
Poslední Aktualizace 2023-11-20
Datum Vydání 2021-11-10
Hodnocení 4.25/5 Celkem 4 Hodnocení
Vývojář PS
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/paolosimone/virtual-json-viewer
URL Stránky Nápovědy https://github.com/paolosimone/virtual-json-viewer/issues
URL Stránky Zásad Ochrany Soukromí https://raw.githubusercontent.com/paolosimone/virtual-json-viewer/main/assets/privacy-policy.txt
Podporované Jazyky 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"
    }
}