Seven JSON Viewer
Minimal JSON Viewer with JSON Path
Cos'è Seven JSON Viewer?
Seven JSON Viewer è un'estensione di Chrome sviluppata da https://reez.dev, e la sua funzione principale è "Minimal JSON Viewer with JSON Path".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Seven JSON Viewer
Scarica i file di estensione Seven JSON Viewer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Seven JSON Viewer |
ID | cfahdpkjihoomfomffdbmamapgdpohoe |
URL Ufficiale | https://chromewebstore.google.com/detail/seven-json-viewer/cfahdpkjihoomfomffdbmamapgdpohoe |
Descrizione | Minimal JSON Viewer with JSON Path |
Dimensione del File | 228 KB |
Conteggio Installazioni | 3,163 |
Versione Corrente | 5.0 |
Ultimo Aggiornamento | 2022-07-27 |
Data di Pubblicazione | 2020-03-17 |
Valutazione | 4.50/5 Totale 8 Valutazioni |
Sviluppatore | https://reez.dev |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://reez.dev/project/seven-json-viewer |
URL della Pagina di Aiuto | https://reez.dev/project/seven-json-viewer#support |
Lingue Supportate | 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" } } |