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…

Wat is JSON Manipulator - JSON to CSV converter?

JSON Manipulator - JSON to CSV converter is een Chrome-extensie ontwikkeld door https://polymorphiclabs.io, en de belangrijkste functie is "NEW FEATURE: convert JSON to CSV, even if your JSON is arbitrarily nested. Discoverable Json essentially flattens your JSON data…".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie JSON Manipulator - JSON to CSV converter

Download JSON Manipulator - JSON to CSV converter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam JSON Manipulator - JSON to CSV converter JSON Manipulator - JSON to CSV converter
ID pcakbljjigdafljigcpbmjllkbhlncjg
Officiële URL https://chromewebstore.google.com/detail/json-manipulator-json-to/pcakbljjigdafljigcpbmjllkbhlncjg
Beschrijving NEW FEATURE: convert JSON to CSV, even if your JSON is arbitrarily nested. Discoverable Json essentially flattens your JSON data…
Bestandsgrootte 4.23 MB
Aantal Installaties 200
Huidige Versie 0.4.0
Laatst Bijgewerkt 2023-04-25
Publicatiedatum 2021-02-16
Beoordeling 3.00/5 Totaal 2 Beoordelingen
Ontwikkelaar https://polymorphiclabs.io
E-mail [email protected]
Betalingswijze in_app
Extensiewebsite https://github.com/noitcudni/discoverable-json
Help Pagina-URL https://github.com/noitcudni/discoverable-json/issues
URL van de Privacybeleid Pagina https://polymorphiclabs.io/pages-output/privacy_policy
Ondersteunde Talen 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
}