Jsonfy

With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.

Cos'è Jsonfy?

Jsonfy è un'estensione di Chrome sviluppata da Danilo Trindade, e la sua funzione principale è "With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Jsonfy

Scarica i file di estensione Jsonfy in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.                    

Informazioni di Base sull'Estensione

Nome Jsonfy Jsonfy
ID dcjbeocbhehgcdckjfmkbdpkhdkpbbmn
URL Ufficiale https://chromewebstore.google.com/detail/jsonfy/dcjbeocbhehgcdckjfmkbdpkhdkpbbmn
Descrizione With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.
Dimensione del File 23.51 KB
Conteggio Installazioni 152
Versione Corrente 1.3
Ultimo Aggiornamento 2017-05-12
Data di Pubblicazione 2017-05-12
Sviluppatore Danilo Trindade
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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
}