JSONVue

Validate and view JSON documents

Co je JSONVue?

JSONVue je rozšíření Chrome vyvinuté gildas, a jeho hlavní funkcí je „Validate and view JSON documents“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření JSONVue

Stáhněte si soubory rozšíření JSONVue 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í

                        JSONView port for Chrome.

Original firefox extension is here: http://benhollis.net/software/jsonview/ 

Notes: 
 - JSON is validated using a client-side javascript implementation of JSONLint (http://github.com/zaach/jsonlint)
 - this extension displays JSON text compliant with rfc 4627 (http://www.ietf.org/rfc/rfc4627.txt)
 - The stylesheet used to display the JSON content can be customized
 - JSONP (http://en.wikipedia.org/wiki/JSON#JSONP) is supported                    

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

Název JSONVue JSONVue
ID chklaanhfefbnpoihckbnefhakgolnmc
Oficiální URL https://chromewebstore.google.com/detail/jsonvue/chklaanhfefbnpoihckbnefhakgolnmc
Popis Validate and view JSON documents
Velikost souboru 181 KB
Počet instalací 1,257,839
Aktuální Verze 0.2.3
Poslední Aktualizace 2023-11-29
Datum Vydání 2017-01-06
Hodnocení 4.54/5 Celkem 2651 Hodnocení
Vývojář gildas
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/gildas-lormeau/JSONVue
URL Stránky Nápovědy https://github.com/gildas-lormeau/JSONVue/issues
URL Stránky Zásad Ochrany Soukromí https://github.com/gildas-lormeau/SingleFile/blob/master/privacy.md
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSONVue",
    "icons": {
        "16": "resources\/jsonvue16.png",
        "48": "resources\/jsonvue48.png",
        "128": "resources\/jsonvue128.png"
    },
    "version": "0.2.3",
    "description": "Validate and view JSON documents",
    "options_ui": {
        "browser_style": true,
        "page": "options.html",
        "open_in_tab": false
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "manifest_version": 3
}