JSON Viewer

Port of Firefox's JSON Viewer

O que é JSON Viewer?

JSON Viewer é uma extensão do Chrome desenvolvida por Rongjian Zhang, e sua principal característica é "Port of Firefox's JSON Viewer".

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

                        This is a port of Firefox's JSON Viewer

If you open a JSON file in the browser, it is parsed and given syntax highlighting. Arrays and objects are shown collapsed, and you can expand them using the "+" icons.

Source code:
https://github.com/pd4d10/json-viewer                    

Informações Básicas da Extensão

Nome JSON Viewer JSON Viewer
ID efknglbfhoddmmfabeihlemgekhhnabb
URL Oficial https://chromewebstore.google.com/detail/json-viewer/efknglbfhoddmmfabeihlemgekhhnabb
Descrição Port of Firefox's JSON Viewer
Tamanho do Arquivo 136 KB
Contagem de Instalações 38,037
Versão Atual 2.1.0
Última Atualização 2023-09-17
Data de Publicação 2018-05-27
Classificação 4.75/5 Total de 40 Avaliações
Desenvolvedor Rongjian Zhang
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/pd4d10/json-viewer
URL da Página de Ajuda https://github.com/pd4d10/json-viewer
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "JSON Viewer",
    "version": "2.1.0",
    "description": "Port of Firefox's JSON Viewer",
    "offline_enabled": true,
    "homepage_url": "https:\/\/github.com\/pd4d10\/json-viewer",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "dist\/content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage"
    ]
}