JSON Formatter

Makes JSON easy to read. Open source.

O que é JSON Formatter?

JSON Formatter é uma extensão do Chrome desenvolvida por Nik Rolls, e sua principal característica é "Makes JSON easy to read. Open source.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão JSON Formatter

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

                        Makes JSON easy to read. Open source. A fork of the original (no-longer updated) extension by Callum Locke.

FEATURES
   •   JSON & JSONP support
   •   Syntax highlighting with 36 light and dark themes
   •   Collapsible trees, with indent guides
   •   Line numbers
   •   Clickable URLs
   •   Toggle between raw and parsed JSON
   •   Works on any valid JSON page – URL doesn't matter
   •   Works on local files too (if you enable this in chrome://extensions)
   •   You can inspect the JSON by typing "json" in the console

(Note: this extension might clash with other JSON highlighters/beautifiers, like ‘JSONView’, ‘Pretty JSON’ or ‘Sight’ – disable those before trying this.)

PRO TIP
Hold down Ctrl (or Cmd on Mac) while collapsing a tree if you want to collapse all its siblings too.

PRIVACY
No tracking, no advertising, and nothing else nefarious.

SOURCE CODE
github.com/nikrolls/json-formatter

BUGS/SUGGESTIONS
github.com/nikrolls/json-formatter/issues

QUESTIONS
twitter.com/nikrolls                    

Informações Básicas da Extensão

Nome JSON Formatter JSON Formatter
ID mhimpmpmffogbmmkmajibklelopddmjf
URL Oficial https://chromewebstore.google.com/detail/json-formatter/mhimpmpmffogbmmkmajibklelopddmjf
Descrição Makes JSON easy to read. Open source.
Tamanho do Arquivo 40.9 KB
Contagem de Instalações 45,977
Versão Atual 0.10.0
Última Atualização 2017-05-08
Data de Publicação 2017-05-08
Classificação 4.35/5 Total de 65 Avaliações
Desenvolvedor Nik Rolls
Tipo de Pagamento free
Site da Extensão https://github.com/nikrolls/json-formatter
URL da Página de Ajuda https://github.com/nikrolls/json-formatter/Issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON Formatter",
    "version": "0.10.0",
    "manifest_version": 2,
    "description": "Makes JSON easy to read. Open source.",
    "homepage_url": "https:\/\/github.com\/nikrolls\/json-formatter",
    "author": "Nik Rolls, Callum Locke",
    "minimum_edge_version": "40",
    "minimum_chrome_version": "21",
    "icons": {
        "128": "icons\/128.png",
        "32": "icons\/32.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "*:\/\/*\/*",
        ""
    ]
}