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é es Jsonfy?
Jsonfy es una extensión de Chrome desarrollada por Danilo Trindade, y su función principal es "With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Jsonfy
Descarga archivos de extensión Jsonfy en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.
Información Básica de la Extensión
Nombre | Jsonfy |
ID | dcjbeocbhehgcdckjfmkbdpkhdkpbbmn |
URL Oficial | https://chromewebstore.google.com/detail/jsonfy/dcjbeocbhehgcdckjfmkbdpkhdkpbbmn |
Descripción | With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure. |
Tamaño del Archivo | 23.51 KB |
Cantidad de Instalaciones | 152 |
Versión Actual | 1.3 |
Última Actualización | 2017-05-12 |
Fecha de Publicación | 2017-05-12 |
Desarrollador | Danilo Trindade |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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 } |