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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://polymorphiclabs.io และคุณลักษณะหลักของมันคือ "NEW FEATURE: convert JSON to CSV, even if your JSON is arbitrarily nested. Discoverable Json essentially flattens your JSON data…"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย JSON Manipulator - JSON to CSV converter

ดาวน์โหลดไฟล์ส่วนขยาย JSON Manipulator - JSON to CSV converter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
}