Jsonfy
With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.
Jsonfy là gì?
Jsonfy là một tiện ích mở rộng Chrome được phát triển bởi Danilo Trindade, và tính năng chính của nó là "With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.".
Ả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 Jsonfy
Tải xuống các tệp mở rộng Jsonfy 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
With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Jsonfy |
ID | dcjbeocbhehgcdckjfmkbdpkhdkpbbmn |
URL Chính Thức | https://chromewebstore.google.com/detail/jsonfy/dcjbeocbhehgcdckjfmkbdpkhdkpbbmn |
Mô tả | With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure. |
Kích Thước Tệp | 23.51 KB |
Số Lần Cài Đặt | 152 |
Phiên Bản Hiện Tại | 1.3 |
Cập Nhật Lần Cuối | 2017-05-12 |
Ngày Phát Hành | 2017-05-12 |
Nhà Phát Triển | Danilo Trindade |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "1.3", "name": "Jsonfy", "description": "With this chrome extension you can \"beatify\" your api Json with just one click. A simple way to view a formatted JSON structure.", "browser_action": { "default_icon": "images\/icon-inactive-38.png", "default_title": "Jsonfy" }, "icons": { "16": "images\/icon-active-38.png", "128": "images\/icon-active.png" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "background" ], "background": { "scripts": [ "js\/actions.js", "js\/background.js" ] }, "web_accessible_resources": [ "images\/icon-active.png" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "js\/actions.js" ], "css": [ "css\/json.css" ] } ], "offline_enabled": false } |