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开发的Chrome扩展程序,该扩展的主要功能是“download .JSON to .CSV or in other words; custom csv from json feeds or files.”。

扩展截图

screenshot

下载JSON to CSV扩展crx文件

下载JSON to CSV扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
}