JSON Viewer

Port of Firefox's JSON Viewer

什么是JSON Viewer?

JSON Viewer是由Rongjian Zhang开发的Chrome扩展程序,该扩展的主要功能是“Port of Firefox's JSON Viewer”。

扩展截图

screenshot

下载JSON Viewer扩展crx文件

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

扩展使用说明

                        This is a port of Firefox's JSON Viewer

If you open a JSON file in the browser, it is parsed and given syntax highlighting. Arrays and objects are shown collapsed, and you can expand them using the "+" icons.

Source code:
https://github.com/pd4d10/json-viewer                    

扩展基本信息

名称 JSON Viewer JSON Viewer
ID efknglbfhoddmmfabeihlemgekhhnabb
官方URL https://chromewebstore.google.com/detail/json-viewer/efknglbfhoddmmfabeihlemgekhhnabb
简介 Port of Firefox's JSON Viewer
文件大小 136 KB
安装次数 38,037
当前版本 2.1.0
更新时间 2023-09-17
上架时间 2018-05-27
评分 4.75/5 共40次评分
开发者 Rongjian Zhang
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/pd4d10/json-viewer
帮助页面URL https://github.com/pd4d10/json-viewer
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "JSON Viewer",
    "version": "2.1.0",
    "description": "Port of Firefox's JSON Viewer",
    "offline_enabled": true,
    "homepage_url": "https:\/\/github.com\/pd4d10\/json-viewer",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "dist\/content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage"
    ]
}