Rainbow JSON Formatter

Makes JSON easy to read. Open source.

Rainbow JSON Formatter란 무엇입니까?

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

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Makes JSON easy to read by formatting it and apply different colors for bracket pairs.

=== Features ===

- JSON & JSONP support
- Rainbow colors for bracket pairs
- Syntax highlighting with 36 light and dark themes 
- Line numbers 
- Clickable URLs
- Toggle between raw and parsed JSON 
- Works on local files too (if you enable this in chrome://extension)
- You can inspect the JSON by typing "json" in the console 


Note: This extension might clash with other JSON beautifiers, make sure you're using only one of them.

=== Privacy ===

No tracking, no advertising.

=== Source Code ===

https://github.com/vitozev/rainbow-json-formatter

=== Bugs & Improvement Requests

https://github.com/vitozev/rainbow-json-formatter/issues

=== Pro Tip ===

Hold down the Ctrl (or Cmd on Mac) key while collapsing a tree if you want to collapse all its siblings as well.                    

확장 프로그램 기본 정보

이름 Rainbow JSON Formatter Rainbow JSON Formatter
ID dbiolbddipbicaokllijphafkgbedhcm
공식 URL https://chromewebstore.google.com/detail/rainbow-json-formatter/dbiolbddipbicaokllijphafkgbedhcm
설명 Makes JSON easy to read. Open source.
파일 크기 52.65 KB
설치 횟수 866
현재 버전 0.1.2
최근 업데이트 2020-12-02
출시 날짜 2020-10-06
평점 4.33/5 총 6 개의 평점
개발자 vitozev
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/vitozev/rainbow-json-formatter
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Rainbow JSON Formatter",
    "version": "0.1.2",
    "manifest_version": 2,
    "description": "Makes JSON easy to read. Open source.",
    "homepage_url": "https:\/\/github.com\/vitozev\/json-formatter",
    "author": "Kristian Vitozev",
    "minimum_edge_version": "40",
    "minimum_chrome_version": "21",
    "icons": {
        "128": "icons\/128.png",
        "32": "icons\/32.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "*:\/\/*\/*",
        ""
    ]
}