Jsonfy
With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.
Vad är Jsonfy?
Jsonfy är en Chrome-tillägg utvecklad av Danilo Trindade, och dess huvudfunktion är "With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.".
Tilläggsskärmbilder
Ladda ner Jsonfy-förlängningens CRX-fil
Ladda ner Jsonfy-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure. Grundläggande Information om Tillägg
| Namn | |
| ID | dcjbeocbhehgcdckjfmkbdpkhdkpbbmn |
| Officiell webbadress | https://chromewebstore.google.com/detail/jsonfy/dcjbeocbhehgcdckjfmkbdpkhdkpbbmn |
| Beskrivning | With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure. |
| Filstorlek | 23.51 KB |
| Antal Installationer | 152 |
| Aktuell Version | 1.3 |
| Senast Uppdaterad | 2017-05-12 |
| Publiceringsdatum | 2017-05-12 |
| Utvecklare | Danilo Trindade |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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
} | |