Seven JSON Viewer
Minimal JSON Viewer with JSON Path
What is Seven JSON Viewer?
Seven JSON Viewer is a Chrome extension developed by https://reez.dev, and its main feature is "Minimal JSON Viewer with JSON Path".
Extension Screenshots
Download Seven JSON Viewer Extension CRX File
Download Seven JSON Viewer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Seven JSON Viewer |
ID | cfahdpkjihoomfomffdbmamapgdpohoe |
Official URL | https://chromewebstore.google.com/detail/seven-json-viewer/cfahdpkjihoomfomffdbmamapgdpohoe |
Description | Minimal JSON Viewer with JSON Path |
File Size | 228 KB |
Installation Count | 3,163 |
Current Version | 5.0 |
Last Updated | 2022-07-27 |
Publish Date | 2020-03-17 |
Rating | 4.50/5 Total 8 Ratings |
Developer | https://reez.dev |
[email protected] | |
Payment Type | free |
Extension Website | https://reez.dev/project/seven-json-viewer |
Help Page URL | https://reez.dev/project/seven-json-viewer#support |
Supported Languages | 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" } } |