JSON to CSV

download .JSON to .CSV or in other words; custom csv from json feeds or files.

JSON to CSV क्या है?

JSON to CSV Sam Larison द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "download .JSON to .CSV or in other words; custom csv from json feeds or files."।

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

screenshot

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

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

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

                        Transform JSON web response to one of two CSV formats

When you view a JSON data feed (typically a web url ending in .json or with Content-Type: application/json) some advanced users will wish to extract some of this complex object data into 2d array like format (i.e. spreadsheet data).

This extension allows you to craft a custom script (which you can save) and then evaluate that script to transform the json array of objects into a flat array of columns, which can then easily be copied and pasted into a spreadsheet or downloaded as CSV format.

Source Code https://github.com/qufighter/csv_from_json                    

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

नाम JSON to CSV JSON to CSV
ID afcnkcoempmipgnobjegmilfmglciipj
आधिकारिक URL https://chromewebstore.google.com/detail/json-to-csv/afcnkcoempmipgnobjegmilfmglciipj
विवरण download .JSON to .CSV or in other words; custom csv from json feeds or files.
फ़ाइल का आकार 576 KB
स्थापना संख्या 642
वर्तमान संस्करण 0.0.1.13
अंतिम अपडेट 2022-11-16
प्रकाशन तिथि 2019-03-08
रेटिंग 2.25/5 कुल 4 रेटिंग्स
डेवलपर Sam Larison
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL http://vidsbee.com/ColorPick/Privacy
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "description": "download .JSON to .CSV or in other words; custom csv from json feeds or files.",
    "name": "JSON to CSV",
    "content_scripts": [
        {
            "js": [
                "jsontocsv.user.js"
            ],
            "run_at": "document_idle",
            "matches": [
                "",
                "file:\/\/\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "19": "images\/inactive\/icon19.png",
            "38": "images\/inactive\/icon38.png"
        },
        "default_title": "JSON to CSV",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "options_page": "options.html",
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'",
        "sandbox": "sandbox allow-scripts; script-src 'self' 'unsafe-eval';"
    },
    "sandbox": {
        "pages": [
            "popup_sandbox.html"
        ]
    },
    "permissions": [
        "activeTab"
    ],
    "host_permissions": [
        ""
    ],
    "version": "0.0.1.13"
}