Seven JSON Viewer

Minimal JSON Viewer with JSON Path

Seven JSON Viewer란 무엇입니까?

Seven JSON Viewer은(는) https://reez.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Minimal JSON Viewer with JSON Path"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Minimal JSON Viewer with JSON Path Support.

Features
--------------
1. Syntax Highlighting
2. Collapsible tree for improved readability
3. Dark themed
4. Realtime JSON Path support
5. Multiple Themes

Note: 
This extension might have conflict with other JSON highlighters/beautifiers, like 'JSON Formatter', 'JSONView', 'Pretty JSON' and so on – Please, disable those before trying this for better experience.                    

확장 프로그램 기본 정보

이름 Seven JSON Viewer Seven JSON Viewer
ID cfahdpkjihoomfomffdbmamapgdpohoe
공식 URL https://chromewebstore.google.com/detail/seven-json-viewer/cfahdpkjihoomfomffdbmamapgdpohoe
설명 Minimal JSON Viewer with JSON Path
파일 크기 228 KB
설치 횟수 3,163
현재 버전 5.0
최근 업데이트 2022-07-27
출시 날짜 2020-03-17
평점 4.50/5 총 8 개의 평점
개발자 https://reez.dev
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://reez.dev/project/seven-json-viewer
도움말 페이지 URL https://reez.dev/project/seven-json-viewer#support
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Seven JSON Viewer",
    "description": "Minimal JSON Viewer with JSON Path",
    "short_name": "JSON Viewer",
    "version": "5.0",
    "offline_enabled": true,
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "content_security_policy": {
        "sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'none';"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "assets\/icon-16.png",
        "48": "assets\/icon-48.png",
        "128": "assets\/icon-128.png",
        "512": "assets\/icon-512.png"
    },
    "action": {
        "default_popup": "popup.html"
    }
}