Jsonfy
With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.
Co to jest Jsonfy?
Jsonfy to rozszerzenie Chrome opracowane przez Danilo Trindade, a jego główną funkcją jest „With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Jsonfy
Pobierz pliki rozszerzeń Jsonfy w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.
Podstawowe informacje o rozszerzeniu
Nazwa | Jsonfy |
ID | dcjbeocbhehgcdckjfmkbdpkhdkpbbmn |
Oficjalny URL | https://chromewebstore.google.com/detail/jsonfy/dcjbeocbhehgcdckjfmkbdpkhdkpbbmn |
Opis | With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure. |
Rozmiar pliku | 23.51 KB |
Liczba instalacji | 152 |
Aktualna Wersja | 1.3 |
Ostatnia Aktualizacja | 2017-05-12 |
Data Publikacji | 2017-05-12 |
Deweloper | Danilo Trindade |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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 } |