JSON Viewer Pro
A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅…
JSON Viewer Pro là gì?
JSON Viewer Pro là một tiện ích mở rộng Chrome được phát triển bởi Rahul Baruri, và tính năng chính của nó là "A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅…".
Ả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 JSON Viewer Pro
Tải xuống các tệp mở rộng JSON Viewer Pro 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
A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅ Completely Free and no advertisements. Core features: ✅ Beautify JSON response from API ✅ Visual representation of JSON with Chart ✅ Depth traversing of JSON property using breadcrumbs ✅ Write custom JSON in Input area ✅ Import local JSON file ✅ Download JSON file using Context Menu ✅ URL filters ✅ Change Themes ✅ Custom CSS ✅ Cool User Interface. ✅ Copy property and value ✅ Access JSON in your console using only json keyword
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | JSON Viewer Pro |
ID | eifflpmocdbdmepbjaopkkhbfmdgijcc |
URL Chính Thức | https://chromewebstore.google.com/detail/json-viewer-pro/eifflpmocdbdmepbjaopkkhbfmdgijcc |
Mô tả | A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅… |
Kích Thước Tệp | 338 KB |
Số Lần Cài Đặt | 385,193 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2021-03-21 |
Ngày Phát Hành | 2020-10-04 |
Đánh Giá | 4.77/5 Tổng số 111 Đánh Giá |
Nhà Phát Triển | Rahul Baruri |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/rbrahul/Awesome-JSON-Viewer |
URL Trang Trợ Giúp | https://github.com/rbrahul/Awesome-JSON-Viewer |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "JSON Viewer Pro", "short_name": "JSON Viewer", "offline_enabled": true, "version": "1.0.1", "manifest_version": 2, "icons": { "16": "images\/icons\/icon-16.png", "38": "images\/icons\/icon-32.png", "128": "images\/icons\/icon-128.png" }, "background": { "scripts": [ "\/js\/background.js" ] }, "options_page": "options.html", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "ftp:\/\/*\/*", "file:\/\/\/*" ], "js": [ "\/js\/contentScript.js" ], "run_at": "document_start", "all_frames": true } ], "browser_action": { "default_icon": "images\/icons\/icon-16.png" }, "permissions": [ "*:\/\/*\/*", "contextMenus" ], "web_accessible_resources": [ "\/js\/main.js", "\/css\/main.css", "\/css\/themes\/mdn.css", "options.html", "images\/icons\/gear.png" ] } |