JSON Formatter

Makes JSON easy to read. Open source.

O que é JSON Formatter?

JSON Formatter é uma extensão do Chrome desenvolvida por https://callumlocke.com, 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

                        The original JSON Formatter, now with optional dark mode 🌚

Auto-formats JSON when you load it in a browser tab.

FEATURES

- Fast, even on very long JSON pages
- Dark mode
- Syntax highlighting
- Collapsible trees, with indent guides
- Clickable URLs
- Negligible performance impact on non-JSON pages (less than 1 millisecond)
- Works on any valid JSON page – URL doesn't matter
- Buttons for toggling between raw and parsed JSON

Note: this extension might clash with other browser extensions that modify the DOM before it runs. If it doesn't seem to be working, try disabling other extensions. If it clashes with an extension you need, open an issue and I'll try to find a solution.

SOME EXAMPLE JSON PAGES to try it out on:
https://callumlocke.github.io/json-formatter/

PRO TIP
Hold down control (or cmd on Mac) while collapsing a tree - collapses all siblings too.

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

SOURCE CODE
github.com/callumlocke/json-formatter

ISSUES
github.com/callumlocke/json-formatter/issues

WHO MADE THIS
twitter.com/callumlocke                    

Informações Básicas da Extensão

Nome JSON Formatter JSON Formatter
ID bcjindcccaagfpapjjmafapmmgkkhgoa
URL Oficial https://chromewebstore.google.com/detail/json-formatter/bcjindcccaagfpapjjmafapmmgkkhgoa
Descrição Makes JSON easy to read. Open source.
Tamanho do Arquivo 20.7 KB
Contagem de Instalações 2,677,987
Versão Atual 0.7.1
Última Atualização 2023-01-02
Data de Publicação 2020-04-20
Classificação 4.58/5 Total de 1820 Avaliações
Desenvolvedor https://callumlocke.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/callumlocke/json-formatter
URL da Página de Ajuda https://github.com/callumlocke/json-formatter/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON Formatter",
    "version": "0.7.1",
    "manifest_version": 3,
    "description": "Makes JSON easy to read. Open source.",
    "homepage_url": "https:\/\/github.com\/callumlocke\/json-formatter",
    "minimum_chrome_version": "88",
    "icons": {
        "128": "icons\/128.png",
        "32": "icons\/32.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*\/*",
        ""
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    }
}