JSON Formatter

Makes JSON easy to read. Open source.

JSON Formatter란 무엇입니까?

JSON Formatter은(는) https://www.cafeboy.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes JSON easy to read. Open source."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

JSON Formatter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        based on https://github.com/callumlocke/json-formatter
add force to return application/json content-type action;
change the font;
fixed JSONP leading semicolon bug;
dark mode.                    

확장 프로그램 기본 정보

이름 JSON Formatter JSON Formatter
ID cfaihfocdnniaholfnjcemnfhcjchohb
공식 URL https://chromewebstore.google.com/detail/json-formatter/cfaihfocdnniaholfnjcemnfhcjchohb
설명 Makes JSON easy to read. Open source.
파일 크기 30.93 KB
설치 횟수 12,295
현재 버전 0.6.0.3
최근 업데이트 2022-06-18
출시 날짜 2020-05-10
평점 4.43/5 총 21 개의 평점
개발자 https://www.cafeboy.org
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/jumkey/json-formatter
도움말 페이지 URL https://github.com/jumkey/json-formatter/issues
개인정보 보호 정책 페이지 URL https://www.cafeboy.org/privacy.html
지원되는 언어 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON Formatter",
    "version": "0.6.0.3",
    "manifest_version": 2,
    "description": "Makes JSON easy to read. Open source.",
    "homepage_url": "https:\/\/github.com\/jumkey\/json-formatter",
    "minimum_chrome_version": "21",
    "icons": {
        "128": "icons\/128.png",
        "32": "icons\/32.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_title": "__MSG_reload__"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        ""
    ]
}