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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Danilo Trindade และคุณลักษณะหลักของมันคือ "With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Jsonfy
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
URL อย่างเป็นทางการ | 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 } |