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?
Jsonfy是由Danilo Trindade開發的Chrome擴展程式,該擴展的主要功能是“With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.”。
擴展截圖
下載Jsonfy擴展crx文件
下載Jsonfy擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.
擴展基本資訊
名稱 | Jsonfy |
ID | dcjbeocbhehgcdckjfmkbdpkhdkpbbmn |
官方網址 | https://chromewebstore.google.com/detail/jsonfy/dcjbeocbhehgcdckjfmkbdpkhdkpbbmn |
簡介 | With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure. |
檔案大小 | 23.51 KB |
安裝次數 | 152 |
目前版本 | 1.3 |
更新時間 | 2017-05-12 |
上架時間 | 2017-05-12 |
開發者 | Danilo Trindade |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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 } |