Seven JSON Viewer
Minimal JSON Viewer with JSON Path
O que é Seven JSON Viewer?
Seven JSON Viewer é uma extensão do Chrome desenvolvida por https://reez.dev, e sua principal característica é "Minimal JSON Viewer with JSON Path".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Seven JSON Viewer
Baixe arquivos de extensão Seven 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
Minimal JSON Viewer with JSON Path Support. Features -------------- 1. Syntax Highlighting 2. Collapsible tree for improved readability 3. Dark themed 4. Realtime JSON Path support 5. Multiple Themes Note: This extension might have conflict with other JSON highlighters/beautifiers, like 'JSON Formatter', 'JSONView', 'Pretty JSON' and so on – Please, disable those before trying this for better experience.
Informações Básicas da Extensão
Nome | Seven JSON Viewer |
ID | cfahdpkjihoomfomffdbmamapgdpohoe |
URL Oficial | https://chromewebstore.google.com/detail/seven-json-viewer/cfahdpkjihoomfomffdbmamapgdpohoe |
Descrição | Minimal JSON Viewer with JSON Path |
Tamanho do Arquivo | 228 KB |
Contagem de Instalações | 3,163 |
Versão Atual | 5.0 |
Última Atualização | 2022-07-27 |
Data de Publicação | 2020-03-17 |
Classificação | 4.50/5 Total de 8 Avaliações |
Desenvolvedor | https://reez.dev |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://reez.dev/project/seven-json-viewer |
URL da Página de Ajuda | https://reez.dev/project/seven-json-viewer#support |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Seven JSON Viewer", "description": "Minimal JSON Viewer with JSON Path", "short_name": "JSON Viewer", "version": "5.0", "offline_enabled": true, "manifest_version": 3, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "main.js" ], "run_at": "document_start", "all_frames": true } ], "content_security_policy": { "sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'none';" }, "permissions": [ "storage" ], "icons": { "16": "assets\/icon-16.png", "48": "assets\/icon-48.png", "128": "assets\/icon-128.png", "512": "assets\/icon-512.png" }, "action": { "default_popup": "popup.html" } } |