Jsonfy
With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.
Hvad er Jsonfy?
Jsonfy er en Chrome-udvidelse udviklet af Danilo Trindade, og dens hovedfunktion er "With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.".
Udvidelsesskærmbilleder
Download Jsonfy-udvidelses-CRX-fil
Download Jsonfy-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.
Grundlæggende oplysninger om udvidelsen
Navn | Jsonfy |
ID | dcjbeocbhehgcdckjfmkbdpkhdkpbbmn |
Officiel URL | https://chromewebstore.google.com/detail/jsonfy/dcjbeocbhehgcdckjfmkbdpkhdkpbbmn |
Beskrivelse | With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure. |
Filstørrelse | 23.51 KB |
Antal Installationer | 152 |
Nuværende Version | 1.3 |
Senest Opdateret | 2017-05-12 |
Udgivelsesdato | 2017-05-12 |
Udvikler | Danilo Trindade |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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 } |