JSONVue

Validate and view JSON documents

O que é JSONVue?

JSONVue é uma extensão do Chrome desenvolvida por gildas, e sua principal característica é "Validate and view JSON documents".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão JSONVue

Baixe arquivos de extensão JSONVue no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome JSONVue JSONVue
ID chklaanhfefbnpoihckbnefhakgolnmc
URL Oficial https://chromewebstore.google.com/detail/jsonvue/chklaanhfefbnpoihckbnefhakgolnmc
Descrição Validate and view JSON documents
Tamanho do Arquivo 181 KB
Contagem de Instalações 1,257,839
Versão Atual 0.2.3
Última Atualização 2023-11-29
Data de Publicação 2017-01-06
Classificação 4.54/5 Total de 2651 Avaliações
Desenvolvedor gildas
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/gildas-lormeau/JSONVue
URL da Página de Ajuda https://github.com/gildas-lormeau/JSONVue/issues
URL da Página de Política de Privacidade https://github.com/gildas-lormeau/SingleFile/blob/master/privacy.md
Idiomas Suportados 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
}