JSON Viewer

Makes JSON response easy to read.

什么是JSON Viewer?

JSON Viewer是由https://timleland.com开发的Chrome扩展程序,该扩展的主要功能是“Makes JSON response easy to read.”。

扩展截图

screenshot

下载JSON Viewer扩展crx文件

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

扩展使用说明

                        Open source JSON viewer
FEATURES
   •   JSON & JSONP support
   •   Syntax highlighting
   •   Collapsible trees, with indent guides
   •   Clickable URLs
   •   Toggle between raw and parsed JSON

Source: https://github.com/timleland/Json-Viewer-Extension                    

扩展基本信息

名称 JSON Viewer JSON Viewer
ID bbdgkoocgebebgihgkhfhlpekclhmfem
官方URL https://chromewebstore.google.com/detail/json-viewer/bbdgkoocgebebgihgkhfhlpekclhmfem
简介 Makes JSON response easy to read.
文件大小 59.51 KB
安装次数 4,749
当前版本 2.0.0
更新时间 2022-02-24
上架时间 2020-09-13
评分 5.00/5 共1次评分
开发者 https://timleland.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://timleland.com/json-viewer-extension/
帮助页面URL https://timleland.com/contact/
隐私政策页面URL https://t.ly/privacy
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "JSON Viewer",
    "homepage_url": "https:\/\/timleland.com\/json-viewer-extension",
    "description": "Makes JSON response easy to read.",
    "version": "2.0.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "vendor\/jquery-3.3.1.min.js",
                "vendor\/json-viewer\/jquery.json-viewer.js",
                "js\/main.js"
            ],
            "css": [
                "vendor\/json-viewer\/jquery.json-viewer.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}