Jsonfy

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

什么是Jsonfy?

Jsonfy是由Danilo Trindade开发的Chrome扩展程序,该扩展的主要功能是“With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.”。

扩展截图

screenshot
screenshot

下载Jsonfy扩展crx文件

下载Jsonfy扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Jsonfy Jsonfy
ID dcjbeocbhehgcdckjfmkbdpkhdkpbbmn
官方URL https://chromewebstore.google.com/detail/jsonfy/dcjbeocbhehgcdckjfmkbdpkhdkpbbmn
简介 With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.
文件大小 23.51 KB
安装次数 152
当前版本 1.3
更新时间 2017-05-12
上架时间 2017-05-12
开发者 Danilo Trindade
电子邮箱 [email protected]
付费类型 free
支持的语言 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
}