JSON Manipulator - JSON to CSV converter

NEW FEATURE: convert JSON to CSV, even if your JSON is arbitrarily nested. Discoverable Json essentially flattens your JSON data…

JSON Manipulator - JSON to CSV converter란 무엇입니까?

JSON Manipulator - JSON to CSV converter은(는) https://polymorphiclabs.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "NEW FEATURE: convert JSON to CSV, even if your JSON is arbitrarily nested. Discoverable Json essentially flattens your JSON data…"입니다.

확장 프로그램 스크린샷

screenshot

JSON Manipulator - JSON to CSV converter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        NEW FEATURE: convert JSON to CSV, even if your JSON is arbitrarily nested.

Discoverable Json essentially flattens your JSON data (however nested) into valid javascript expressions. It's very a simple but powerful concept. With absolute javascript paths, you can easily search for the sliver of data you care about. Or, remove the data that are not relevant to you. Or, find and replace.

Discoverable Json also automatically reconstructs your data manipulation back to JSON. If you want, you can download the end result.

When you are dealing with a sparsely documented JSON blob, or a brand new API that returns a JSON, or simply just got overwhelmed by a deeply nested JSON structure, this tool will help you sort out the mess and find exactly what you need.                    

확장 프로그램 기본 정보

이름 JSON Manipulator - JSON to CSV converter JSON Manipulator - JSON to CSV converter
ID pcakbljjigdafljigcpbmjllkbhlncjg
공식 URL https://chromewebstore.google.com/detail/json-manipulator-json-to/pcakbljjigdafljigcpbmjllkbhlncjg
설명 NEW FEATURE: convert JSON to CSV, even if your JSON is arbitrarily nested. Discoverable Json essentially flattens your JSON data…
파일 크기 4.23 MB
설치 횟수 200
현재 버전 0.4.0
최근 업데이트 2023-04-25
출시 날짜 2021-02-16
평점 3.00/5 총 2 개의 평점
개발자 https://polymorphiclabs.io
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://github.com/noitcudni/discoverable-json
도움말 페이지 URL https://github.com/noitcudni/discoverable-json/issues
개인정보 보호 정책 페이지 URL https://polymorphiclabs.io/pages-output/privacy_policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON Manipulator - JSON to CSV converter",
    "version": "0.4.0",
    "browser_action": {
        "default_title": "Show the popup",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/dj_icon_16.png",
        "32": "images\/dj_icon_32.png",
        "48": "images\/dj_icon_48.png",
        "128": "images\/dj_icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "compiled\/content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "css\/bootstrap.css",
        "css\/material-design-iconic-font.min.css",
        "css\/re-com.css",
        "css\/gron.css"
    ],
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "manifest_version": 2
}