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
Eメール [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"
}