Jsonfy
With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.
Qu'est-ce que Jsonfy ?
Jsonfy est une extension Chrome développée par Danilo Trindade, et sa fonction principale est "With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Jsonfy
Téléchargez les fichiers d'extension Jsonfy au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.
Informations de Base sur l'Extension
Nom | Jsonfy |
ID | dcjbeocbhehgcdckjfmkbdpkhdkpbbmn |
URL Officiel | https://chromewebstore.google.com/detail/jsonfy/dcjbeocbhehgcdckjfmkbdpkhdkpbbmn |
Description | With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure. |
Taille du Fichier | 23.51 KB |
Nombre d'Installations | 152 |
Version Actuelle | 1.3 |
Dernière Mise à Jour | 2017-05-12 |
Date de Publication | 2017-05-12 |
Développeur | Danilo Trindade |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } |