Seven JSON Viewer
Minimal JSON Viewer with JSON Path
Co je Seven JSON Viewer?
Seven JSON Viewer je rozšíření Chrome vyvinuté https://reez.dev, a jeho hlavní funkcí je „Minimal JSON Viewer with JSON Path“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Seven JSON Viewer
Stáhněte si soubory rozšíření Seven JSON Viewer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Seven JSON Viewer |
ID | cfahdpkjihoomfomffdbmamapgdpohoe |
Oficiální URL | https://chromewebstore.google.com/detail/seven-json-viewer/cfahdpkjihoomfomffdbmamapgdpohoe |
Popis | Minimal JSON Viewer with JSON Path |
Velikost souboru | 228 KB |
Počet instalací | 3,163 |
Aktuální Verze | 5.0 |
Poslední Aktualizace | 2022-07-27 |
Datum Vydání | 2020-03-17 |
Hodnocení | 4.50/5 Celkem 8 Hodnocení |
Vývojář | https://reez.dev |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://reez.dev/project/seven-json-viewer |
URL Stránky Nápovědy | https://reez.dev/project/seven-json-viewer#support |
Podporované Jazyky | 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" } } |