JSON格式化工具

一个JSON格式化工具,方便查看、查找JSON格式数据

JSON格式化工具란 무엇입니까?

JSON格式化工具은(는) CSDN에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "一个JSON格式化工具,方便查看、查找JSON格式数据"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

JSON格式化工具 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        1. 支持对结果进行折叠显示
2. 支持主题、字体选择
3. 支持数据统计,能统计文件行数、长度
4. 支持单独打开JSON格式化页面,可以对JSON进行压缩、转义等操作                    

확장 프로그램 기본 정보

이름 JSON格式化工具 JSON格式化工具
ID hldkiepdcdeibnadnpiekpbdgbgbalob
공식 URL https://chromewebstore.google.com/detail/json%E6%A0%BC%E5%BC%8F%E5%8C%96%E5%B7%A5%E5%85%B7/hldkiepdcdeibnadnpiekpbdgbgbalob
설명 一个JSON格式化工具,方便查看、查找JSON格式数据
파일 크기 583 KB
설치 횟수 2,482
현재 버전 3.0.0
최근 업데이트 2022-09-03
출시 날짜 2021-03-23
평점 5.00/5 총 3 개의 평점
개발자 CSDN
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://plugin.csdn.net/
도움말 페이지 URL https://plugin.csdn.net/
개인정보 보호 정책 페이지 URL https://plugin.csdn.net/privacy
지원되는 언어 zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON\u683c\u5f0f\u5316\u5de5\u5177",
    "description": "\u4e00\u4e2aJSON\u683c\u5f0f\u5316\u5de5\u5177\uff0c\u65b9\u4fbf\u67e5\u770b\u3001\u67e5\u627eJSON\u683c\u5f0f\u6570\u636e",
    "homepage_url": "https:\/\/plugin.csdn.net\/",
    "version": "3.0.0",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/icon-logo-16.png",
        "48": "icons\/icon-logo-48.png",
        "128": "icons\/icon-logo-128.png"
    },
    "permissions": [
        "storage",
        "cookies",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "serviceWorker.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [],
            "run_at": "document_start",
            "all_frames": false,
            "match_about_blank": true
        }
    ],
    "action": {
        "default_icon": "icons\/icon-logo.png",
        "default_title": "CSDN-JSON\u683c\u5f0f\u5316\u5de5\u5177"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "packages\/*",
                "svg\/*",
                "images\/*",
                "icons\/*",
                "pages\/*",
                "js\/*",
                "css\/jsonPages.css",
                "vendor\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.csdn.net\/*"
        ]
    }
}