JSON Viewer Pro
A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅…
¿Qué es JSON Viewer Pro?
JSON Viewer Pro es una extensión de Chrome desarrollada por Rahul Baruri, y su función principal es "A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅…".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión JSON Viewer Pro
Descarga archivos de extensión JSON Viewer Pro 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
A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅ Completely Free and no advertisements. Core features: ✅ Beautify JSON response from API ✅ Visual representation of JSON with Chart ✅ Depth traversing of JSON property using breadcrumbs ✅ Write custom JSON in Input area ✅ Import local JSON file ✅ Download JSON file using Context Menu ✅ URL filters ✅ Change Themes ✅ Custom CSS ✅ Cool User Interface. ✅ Copy property and value ✅ Access JSON in your console using only json keyword
Información Básica de la Extensión
Nombre | JSON Viewer Pro |
ID | eifflpmocdbdmepbjaopkkhbfmdgijcc |
URL Oficial | https://chromewebstore.google.com/detail/json-viewer-pro/eifflpmocdbdmepbjaopkkhbfmdgijcc |
Descripción | A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅… |
Tamaño del Archivo | 338 KB |
Cantidad de Instalaciones | 385,193 |
Versión Actual | 1.0.1 |
Última Actualización | 2021-03-21 |
Fecha de Publicación | 2020-10-04 |
Calificación | 4.77/5 Total de 111 Calificaciones |
Desarrollador | Rahul Baruri |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/rbrahul/Awesome-JSON-Viewer |
URL de la Página de Ayuda | https://github.com/rbrahul/Awesome-JSON-Viewer |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "JSON Viewer Pro", "short_name": "JSON Viewer", "offline_enabled": true, "version": "1.0.1", "manifest_version": 2, "icons": { "16": "images\/icons\/icon-16.png", "38": "images\/icons\/icon-32.png", "128": "images\/icons\/icon-128.png" }, "background": { "scripts": [ "\/js\/background.js" ] }, "options_page": "options.html", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "ftp:\/\/*\/*", "file:\/\/\/*" ], "js": [ "\/js\/contentScript.js" ], "run_at": "document_start", "all_frames": true } ], "browser_action": { "default_icon": "images\/icons\/icon-16.png" }, "permissions": [ "*:\/\/*\/*", "contextMenus" ], "web_accessible_resources": [ "\/js\/main.js", "\/css\/main.css", "\/css\/themes\/mdn.css", "options.html", "images\/icons\/gear.png" ] } |