JSON Explorer

Makes JSON responses easy to explore.

什么是JSON Explorer?

JSON Explorer是由https://watchthis.page开发的Chrome扩展程序,该扩展的主要功能是“Makes JSON responses easy to explore.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载JSON Explorer扩展crx文件

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

扩展使用说明

                        JSON Explorer automatically formats messy responses and helps you navigate them. 
Besides expand/collapse, code highlighting, and clickable URLs it also provides: 

- Overview Chart: Allows you to explore the content through an interactive sunburst chart.
- URL Parameters: Displays URL parameters in an easy to read & edit format, and helps you load the new URL. 
- Image Previews: Displays a preview for image links at mouseover.                    

扩展基本信息

名称 JSON Explorer JSON Explorer
ID kiaijfgpdkcbmpdaochmmhefpdmlebhb
官方URL https://chromewebstore.google.com/detail/json-explorer/kiaijfgpdkcbmpdaochmmhefpdmlebhb
简介 Makes JSON responses easy to explore.
文件大小 129 KB
安装次数 91
当前版本 1.0.1
更新时间 2020-12-10
上架时间 2020-12-09
评分 5.00/5 共2次评分
开发者 https://watchthis.page
电子邮箱 [email protected]
付费类型 free
扩展官网 https://watchthis.page/JSON-Explorer
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON Explorer",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "Makes JSON responses easy to explore.",
    "author": "https:\/\/watchthis.page",
    "homepage_url": "https:\/\/watchthis.page\/JSON-Explorer",
    "minimum_chrome_version": "21",
    "icons": {
        "128": "icons\/128.png",
        "32": "icons\/32.png"
    },
    "background": {
        "scripts": [
            "js\/vendor\/browser-polyfill.min.js",
            "js\/utils.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/vendor\/browser-polyfill.min.js",
                "js\/content.js",
                "js\/vendor\/d3.v5.min.js",
                "js\/chart.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "css\/content.css"
    ],
    "permissions": [
        ""
    ]
}