Seven JSON Viewer
Minimal JSON Viewer with JSON Path
Seven JSON Viewer là gì?
Seven JSON Viewer là một tiện ích mở rộng Chrome được phát triển bởi https://reez.dev, và tính năng chính của nó là "Minimal JSON Viewer with JSON Path".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Seven JSON Viewer
Tải xuống các tệp mở rộng Seven JSON Viewer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Seven JSON Viewer |
ID | cfahdpkjihoomfomffdbmamapgdpohoe |
URL Chính Thức | https://chromewebstore.google.com/detail/seven-json-viewer/cfahdpkjihoomfomffdbmamapgdpohoe |
Mô tả | Minimal JSON Viewer with JSON Path |
Kích Thước Tệp | 228 KB |
Số Lần Cài Đặt | 3,163 |
Phiên Bản Hiện Tại | 5.0 |
Cập Nhật Lần Cuối | 2022-07-27 |
Ngày Phát Hành | 2020-03-17 |
Đánh Giá | 4.50/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | https://reez.dev |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://reez.dev/project/seven-json-viewer |
URL Trang Trợ Giúp | https://reez.dev/project/seven-json-viewer#support |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |