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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        对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"
}