JSON Viewer

Makes JSON response easy to read.

O que é JSON Viewer?

JSON Viewer é uma extensão do Chrome desenvolvida por https://timleland.com, e sua principal característica é "Makes JSON response easy to read.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão JSON Viewer

Baixe arquivos de extensão JSON Viewer 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

                        Open source JSON viewer
FEATURES
   •   JSON & JSONP support
   •   Syntax highlighting
   •   Collapsible trees, with indent guides
   •   Clickable URLs
   •   Toggle between raw and parsed JSON

Source: https://github.com/timleland/Json-Viewer-Extension                    

Informações Básicas da Extensão

Nome JSON Viewer JSON Viewer
ID bbdgkoocgebebgihgkhfhlpekclhmfem
URL Oficial https://chromewebstore.google.com/detail/json-viewer/bbdgkoocgebebgihgkhfhlpekclhmfem
Descrição Makes JSON response easy to read.
Tamanho do Arquivo 59.51 KB
Contagem de Instalações 4,749
Versão Atual 2.0.0
Última Atualização 2022-02-24
Data de Publicação 2020-09-13
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://timleland.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://timleland.com/json-viewer-extension/
URL da Página de Ajuda https://timleland.com/contact/
URL da Página de Política de Privacidade https://t.ly/privacy
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "JSON Viewer",
    "homepage_url": "https:\/\/timleland.com\/json-viewer-extension",
    "description": "Makes JSON response easy to read.",
    "version": "2.0.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "vendor\/jquery-3.3.1.min.js",
                "vendor\/json-viewer\/jquery.json-viewer.js",
                "js\/main.js"
            ],
            "css": [
                "vendor\/json-viewer\/jquery.json-viewer.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}