JSON Viewer Pro
A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅…
Co je JSON Viewer Pro?
JSON Viewer Pro je rozšíření Chrome vyvinuté Rahul Baruri, a jeho hlavní funkcí je „A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅…“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření JSON Viewer Pro
Stáhněte si soubory rozšíření JSON Viewer Pro ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | JSON Viewer Pro |
ID | eifflpmocdbdmepbjaopkkhbfmdgijcc |
Oficiální URL | https://chromewebstore.google.com/detail/json-viewer-pro/eifflpmocdbdmepbjaopkkhbfmdgijcc |
Popis | A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅… |
Velikost souboru | 338 KB |
Počet instalací | 385,193 |
Aktuální Verze | 1.0.1 |
Poslední Aktualizace | 2021-03-21 |
Datum Vydání | 2020-10-04 |
Hodnocení | 4.77/5 Celkem 111 Hodnocení |
Vývojář | Rahul Baruri |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/rbrahul/Awesome-JSON-Viewer |
URL Stránky Nápovědy | https://github.com/rbrahul/Awesome-JSON-Viewer |
Podporované Jazyky | 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" ] } |