JSON[B] Viewer

JSON[B] is a editor online web-based tool to view, edit, format, transform and diff JSON documents.

JSON[B] Viewer란 무엇입니까?

JSON[B] Viewer은(는) https://jsonb.online에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "JSON[B] is a editor online web-based tool to view, edit, format, transform and diff JSON documents."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

JSON[B] Viewer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The most beautiful JSON tools that your eyes have ever seen.
It is a Chrome extension for JSON.

Notes:
* This extension might crash with other JSON highlighters/formatters, you may need to disable them
* To highlight local files and incognito tabs you have to manually enable these options on the extensions page
* Sometimes when the plugin updates chrome leaves the old background process running and revokes some options, like the access to local files. When this happen just recheck the option that everything will work again
* Works on local files (if you enable this in chrome://extensions).                    

확장 프로그램 기본 정보

이름 JSON[B] Viewer JSON[B] Viewer
ID jnhbjoikcefpmjiicnmgncglcjeefomk
공식 URL https://chromewebstore.google.com/detail/jsonb-viewer/jnhbjoikcefpmjiicnmgncglcjeefomk
설명 JSON[B] is a editor online web-based tool to view, edit, format, transform and diff JSON documents.
파일 크기 17.4 KB
설치 횟수 150
현재 버전 2.1.0
최근 업데이트 2021-09-02
출시 날짜 2021-09-02
평점 5.00/5 총 2 개의 평점
개발자 https://jsonb.online
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.jsonb.online
도움말 페이지 URL https://www.jsonb.online
개인정보 보호 정책 페이지 URL https://www.jsonb.online/legal/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON[B] Viewer",
    "version": "2.1.0",
    "manifest_version": 2,
    "author": "JSON[B] ",
    "description": "JSON[B] is a editor online web-based tool to view, edit, format, transform and diff JSON documents.",
    "homepage_url": "https:\/\/www.jsonb.online",
    "minimum_chrome_version": "21",
    "icons": {
        "128": "assets\/icons\/128.png",
        "32": "assets\/icons\/32.png",
        "16": "assets\/icons\/16.png"
    },
    "web_accessible_resources": [],
    "offline_enabled": true,
    "omnibox": {
        "keyword": "jsonb"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "assets\/js\/viewer.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "assets\/js\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "*:\/\/*\/*",
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'; frame-src 'self' https:\/\/www.jsonb.online"
}