JSON Lite

Fast JSON viewer - highlights, shows items count/size, handles large files

O que é JSON Lite?

JSON Lite é uma extensão do Chrome desenvolvida por Lauri Rooden, e sua principal característica é "Fast JSON viewer - highlights, shows items count/size, handles large files".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão JSON Lite

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

                        Features:

 - Format JSON/JSONP responses and clipboard
 - Select and format/encode/decode text on every page
 - Collapsible arrays, objects and long values
 - Collapse all childs with Ctrl(Command) + Click
 - Collapse property also on all sibling items with Alt(Option) + Click
 - Count items and properties in a collection
 - Show collection sizes
 - Do its best to show large (10MB+) JSON files
 - Do its best to show invalid JSON files
 - Do not sort objects with numeric keys
 - Do not round large numbers
 - "Save as..." saves the original JSON document
 - Select and copy a working JSON from the formatted JSON

Copyright (c) 2016-2023 Lauri Rooden  
The MIT License                    

Informações Básicas da Extensão

Nome JSON Lite JSON Lite
ID acacmjcicejlmjcheoklfdchempahoag
URL Oficial https://chromewebstore.google.com/detail/json-lite/acacmjcicejlmjcheoklfdchempahoag
Descrição Fast JSON viewer - highlights, shows items count/size, handles large files
Tamanho do Arquivo 21.82 KB
Contagem de Instalações 10,498
Versão Atual 23.5.0
Última Atualização 2023-05-20
Data de Publicação 2019-06-18
Classificação 4.88/5 Total de 48 Avaliações
Desenvolvedor Lauri Rooden
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/lauriro/json-lite
URL da Página de Ajuda https://github.com/lauriro/json-lite/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "JSON Lite",
    "version": "23.5.0",
    "author": "Lauri Rooden",
    "description": "Fast JSON viewer - highlights, shows items count\/size, handles large files",
    "icons": {
        "128": "img\/icon-128.png",
        "48": "img\/icon-48.png",
        "32": "img\/icon-32.png"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "activeTab",
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_icon": {
            "48": "img\/icon-48.png"
        },
        "default_popup": "options.html?p"
    }
}