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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Jsonfy एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 } |