DJSON. JSON Viewer & Formatter

Extension to format and view JSON, from Web, Input or File.

DJSON. JSON Viewer & Formatter란 무엇입니까?

DJSON. JSON Viewer & Formatter은(는) dar.desantis에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension to format and view JSON, from Web, Input or File."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

DJSON. JSON Viewer & Formatter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        FEATURES
* Format JSON and JSONP input or responses
* Minify or Beautify JSON
* Theme support
* Syntax highlighting
* Collapsible trees, with indent guides
* Recursive collapsible elements
* Clickable URLs
* Toggle between raw and parsed JSON
* Line numbers
* Works on any valid JSON page – URL doesn't matter
* Works on local files too (if you enable this in `chrome://extensions`)
* You can inspect the JSON by typing `djson` in the console
* Counts items and properties in a collection
* Show JSON path of the elements on hover and copy it with the context menu
* Option to start with JSON collapsed (always or if the file is big)
* Recognize nested JSON strings in properties value
* Hashes, Encode, Time Strings, Numbers utils

Pro Tip
* Hold down control (or cmd on Mac) while collapsing a tree if you want to collapse all its siblings too.
* Hold down shift while collapsing a tree if you want to collapse also all his children                    

확장 프로그램 기본 정보

이름 DJSON. JSON Viewer & Formatter DJSON. JSON Viewer & Formatter
ID chaeijjekipecdajnijdldjjipaegdjc
공식 URL https://chromewebstore.google.com/detail/djson-json-viewer-formatt/chaeijjekipecdajnijdldjjipaegdjc
설명 Extension to format and view JSON, from Web, Input or File.
파일 크기 126 KB
설치 횟수 11,969
현재 버전 0.6.0
최근 업데이트 2019-03-23
출시 날짜 2019-03-23
평점 4.77/5 총 66 개의 평점
개발자 dar.desantis
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/dardesantis/DJSON-Viewer
도움말 페이지 URL https://github.com/dardesantis/DJSON-Viewer/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DJSON. JSON Viewer & Formatter",
    "short_name": "DJSON Viewer",
    "version": "0.6.0",
    "manifest_version": 2,
    "description": "Extension to format and view JSON, from Web, Input or File.",
    "homepage_url": "https:\/\/github.com\/dardesantis\/DJSON-Viewer",
    "minimum_chrome_version": "35",
    "offline_enabled": true,
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_icon": {
            "32": "icons\/32.png"
        },
        "default_title": "DJSON Viewer",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "popup.html",
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "",
        "clipboardWrite",
        "tabs",
        "contextMenus"
    ]
}