JSON Lite

Fast JSON viewer - highlights, shows items count/size, handles large files

JSON Lite란 무엇입니까?

JSON Lite은(는) Lauri Rooden에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Fast JSON viewer - highlights, shows items count/size, handles large files"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Features:

 - Format JSON/JSONP responses and clipboard
 - Select and format/encode/decode text on every page
 - Collapsible arrays, objects and long values
 - Collapse all childs with Ctrl(Command) + Click
 - Collapse property also on all sibling items with Alt(Option) + Click
 - Count items and properties in a collection
 - Show collection sizes
 - Do its best to show large (10MB+) JSON files
 - Do its best to show invalid JSON files
 - Do not sort objects with numeric keys
 - Do not round large numbers
 - "Save as..." saves the original JSON document
 - Select and copy a working JSON from the formatted JSON

Copyright (c) 2016-2023 Lauri Rooden  
The MIT License                    

확장 프로그램 기본 정보

이름 JSON Lite JSON Lite
ID acacmjcicejlmjcheoklfdchempahoag
공식 URL https://chromewebstore.google.com/detail/json-lite/acacmjcicejlmjcheoklfdchempahoag
설명 Fast JSON viewer - highlights, shows items count/size, handles large files
파일 크기 21.82 KB
설치 횟수 10,498
현재 버전 23.5.0
최근 업데이트 2023-05-20
출시 날짜 2019-06-18
평점 4.88/5 총 48 개의 평점
개발자 Lauri Rooden
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/lauriro/json-lite
도움말 페이지 URL https://github.com/lauriro/json-lite/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "JSON Lite",
    "version": "23.5.0",
    "author": "Lauri Rooden",
    "description": "Fast JSON viewer - highlights, shows items count\/size, handles large files",
    "icons": {
        "128": "img\/icon-128.png",
        "48": "img\/icon-48.png",
        "32": "img\/icon-32.png"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "activeTab",
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_icon": {
            "48": "img\/icon-48.png"
        },
        "default_popup": "options.html?p"
    }
}