JSONVue
Validate and view JSON documents
JSONVue là gì?
JSONVue là một tiện ích mở rộng Chrome được phát triển bởi gildas, và tính năng chính của nó là "Validate and view JSON documents".
Ả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 JSONVue
Tải xuống các tệp mở rộng JSONVue 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
JSONView port for Chrome. Original firefox extension is here: http://benhollis.net/software/jsonview/ Notes: - JSON is validated using a client-side javascript implementation of JSONLint (http://github.com/zaach/jsonlint) - this extension displays JSON text compliant with rfc 4627 (http://www.ietf.org/rfc/rfc4627.txt) - The stylesheet used to display the JSON content can be customized - JSONP (http://en.wikipedia.org/wiki/JSON#JSONP) is supported
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | JSONVue |
ID | chklaanhfefbnpoihckbnefhakgolnmc |
URL Chính Thức | https://chromewebstore.google.com/detail/jsonvue/chklaanhfefbnpoihckbnefhakgolnmc |
Mô tả | Validate and view JSON documents |
Kích Thước Tệp | 181 KB |
Số Lần Cài Đặt | 1,257,839 |
Phiên Bản Hiện Tại | 0.2.3 |
Cập Nhật Lần Cuối | 2023-11-29 |
Ngày Phát Hành | 2017-01-06 |
Đánh Giá | 4.54/5 Tổng số 2651 Đánh Giá |
Nhà Phát Triển | gildas |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/gildas-lormeau/JSONVue |
URL Trang Trợ Giúp | https://github.com/gildas-lormeau/JSONVue/issues |
URL Trang Chính Sách Bảo Mật | https://github.com/gildas-lormeau/SingleFile/blob/master/privacy.md |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "JSONVue", "icons": { "16": "resources\/jsonvue16.png", "48": "resources\/jsonvue48.png", "128": "resources\/jsonvue128.png" }, "version": "0.2.3", "description": "Validate and view JSON documents", "options_ui": { "browser_style": true, "page": "options.html", "open_in_tab": false }, "background": { "service_worker": "js\/background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "ftp:\/\/*\/*", "file:\/\/\/*" ], "js": [ "js\/content.js" ], "run_at": "document_end", "all_frames": true } ], "permissions": [ "contextMenus", "storage" ], "manifest_version": 3 } |