Jsonfy

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

What is Jsonfy?

Jsonfy is a Chrome extension developed by Danilo Trindade, and its main feature is "With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.".

Extension Screenshots

screenshot
screenshot

Download Jsonfy Extension CRX File

Download Jsonfy extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Jsonfy Jsonfy
ID dcjbeocbhehgcdckjfmkbdpkhdkpbbmn
Official URL https://chromewebstore.google.com/detail/jsonfy/dcjbeocbhehgcdckjfmkbdpkhdkpbbmn
Description With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.
File Size 23.51 KB
Installation Count 152
Current Version 1.3
Last Updated 2017-05-12
Publish Date 2017-05-12
Developer Danilo Trindade
Email [email protected]
Payment Type free
Supported Languages 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
}