Prettify

Small extension that automatically make pages with JSON/XML/... content prettier.

O que é Prettify?

Prettify é uma extensão do Chrome desenvolvida por https://tiph.io, e sua principal característica é "Small extension that automatically make pages with JSON/XML/... content prettier.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Prettify

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

                        Quick and dirty WebExtension that automatically makes JSON pages good looking. Turns the boring-looking stock JSON rendering into a nice looking, exandable/collaspable view.

The beauty of it is that it automatically runs on every page that has its Content-type set to application/json, so you can forget you've ever installed it, and just enjoy cool-looking JSON pages !                    

Informações Básicas da Extensão

Nome Prettify Prettify
ID emdbenifhkcjjilaliemafklfdnpckhk
URL Oficial https://chromewebstore.google.com/detail/prettify/emdbenifhkcjjilaliemafklfdnpckhk
Descrição Small extension that automatically make pages with JSON/XML/... content prettier.
Tamanho do Arquivo 13.27 KB
Contagem de Instalações 1,049
Versão Atual 1.0.1
Última Atualização 2019-12-01
Data de Publicação 2019-11-27
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://tiph.io
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://edt.tiph.io/privacy.html
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Prettify",
    "version": "1.0.1",
    "description": "Small extension that automatically make pages with JSON\/XML\/... content prettier.",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "inject.js"
            ],
            "run_at": "document_start"
        }
    ]
}