JsonToCsv

A fast, private JSON-to-CSV converter. Your data is never shared with our servers.

JsonToCsv क्या है?

JsonToCsv https://wpcocktail.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A fast, private JSON-to-CSV converter. Your data is never shared with our servers."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में JsonToCsv एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Download JSON to .CSV
Transform JSON web response to one of two CSV formats
AND
Two-click Header quick copy data

This tool allows you to:
Convert JSON to CSV (Comma Separated Values)
If you want convert JSON data: Your JSON should contain an array of objects. Each object must be consisting of name/value pairs.

You can see the user guide to help you to use this online converter.

User guide
To convert JSON data:

In order to download the results you must click on "Download CSV" button.

You can also copy the result to the clipboard by clicking on the Table "Header".
To convert CSV data: It's analogous to the json conversion.


Why convert CSV to JSON ?
CSV file format is a useful for import or export data from databases (example: import data from a CSV file into a table) or softwares. It is easy to use, data published on the Web is commonly published as CSV files.

For developers, it may be more convenient to work on data in json format, JSON format allow easily to send data to and from a server. Indeed you can find one or more robust and widely-used libraries for parsing and formatting JSON in any programming languages.

This online converter tool allows you to convert your CSV data directly into JSON format, so your data can more easily be processed.


Why convert JSON to CSV ?
A lot of software handles the json, but it can sometimes be useful to convert this data for importing in others softwares (many people use excel to visualize data).

This online converter tool allows you to convert your JSON file directly in CSV and Excel format.                    

एक्सटेंशन की मूल जानकारी

नाम JsonToCsv JsonToCsv
ID gfjhgbminfcnafnbkbljbmkdlelileon
आधिकारिक URL https://chromewebstore.google.com/detail/jsontocsv/gfjhgbminfcnafnbkbljbmkdlelileon
विवरण A fast, private JSON-to-CSV converter. Your data is never shared with our servers.
फ़ाइल का आकार 209 KB
स्थापना संख्या 434
वर्तमान संस्करण 1.6.0
अंतिम अपडेट 2022-10-22
प्रकाशन तिथि 2021-01-23
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर https://wpcocktail.com
ईमेल [email protected]
भुगतान के प्रकार in_app
एक्सटेंशन वेबसाइट https://www.wpcocktail.com/
सहायता पृष्ठ URL https://www.wpcocktail.com/contact/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "JsonToCsv",
    "version": "1.6.0",
    "description": "A fast, private JSON-to-CSV converter. Your data is never shared with our servers.",
    "author": "Nanxing",
    "icons": {
        "16": "img\/icon.png",
        "48": "img\/icon.png",
        "128": "img\/icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "ExtPay.js"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "clipboardWrite"
    ]
}