JSON-handle

It's a browser and editor for JSON document.You can get a beautiful view

什么是JSON-handle?

JSON-handle是由https://jsonhandle.sinaapp.com开发的Chrome扩展程序,该扩展的主要功能是“It's a browser and editor for JSON document.You can get a beautiful view”。

扩展截图

screenshot
screenshot
screenshot

下载JSON-handle扩展crx文件

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

扩展使用说明

                        对JSON格式的内容进行浏览和编辑,以树形图样式展现JSON文档,并可实时编辑。

Edit and browse JSON document in a node tree diagram.

After installed, open the URL will trigger JSON-handle:
安装后打开下面网址可以看到JSON-handle启动的效果:
http://jsonhandle.sinaapp.com/demo.json                    

扩展基本信息

名称 JSON-handle JSON-handle
ID iahnhfdhidomcpggpaimmmahffihkfnj
官方URL https://chromewebstore.google.com/detail/json-handle/iahnhfdhidomcpggpaimmmahffihkfnj
简介 It's a browser and editor for JSON document.You can get a beautiful view
文件大小 193 KB
安装次数 207,603
当前版本 0.6.2
更新时间 2021-12-22
上架时间 2020-03-11
评分 4.79/5 共442次评分
开发者 https://jsonhandle.sinaapp.com
电子邮箱 [email protected]
付费类型 free
扩展官网 http://jsonhandle.sinaapp.com/
帮助页面URL http://jsonhandle.sinaapp.com/
隐私政策页面URL https://jsonhandle.sinaapp.com
支持的语言 en,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JSON-handle",
    "version": "0.6.2",
    "icons": {
        "16": "logo16.png",
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "description": "It's a browser and editor for JSON document.You can get a beautiful view",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "content_scripts.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_title": "JSON-handle",
        "default_icon": "logo16.png"
    },
    "options_page": "options.html",
    "web_accessible_resources": [
        "JSON-handle\/JSON-handle.html",
        "options.html"
    ],
    "offline_enabled": true,
    "permissions": [
        "contextMenus",
        "webRequest",
        "tabs",
        ""
    ],
    "default_locale": "en"
}