Table to CSV/JSON

Converts HTML tables in the page into csv or json

什么是Table to CSV/JSON?

Table to CSV/JSON是由http://codex10.com开发的Chrome扩展程序,该扩展的主要功能是“Converts HTML tables in the page into csv or json”。

扩展截图

screenshot
screenshot

下载Table to CSV/JSON扩展crx文件

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

扩展使用说明

                        Right click on an HTML TABLE, choose CSV/JSON, and get the plain text version.

Note the JSON is a simple Array> format.                    

扩展基本信息

名称 Table to CSV/JSON Table to CSV/JSON
ID lcmljkenflafolafllblkbchomcnaefi
官方URL https://chrome.google.com/webstore/detail/table-to-csvjson/lcmljkenflafolafllblkbchomcnaefi
简介 Converts HTML tables in the page into csv or json
文件大小 25.68 KB
安装次数 1,000
当前版本 1.0.2
更新时间 2015-07-05
上架时间 2015-07-05
评分 2.82/5 共11次评分
开发者 http://codex10.com
付费类型 free
扩展官网 http://codex10.com
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Table to CSV\/JSON",
    "short_name": "HTMLTableConverter",
    "version": "1.0.2",
    "author": "Codex10",
    "description": "Converts HTML tables in the page into csv or json",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/lodash.min.js",
                "js\/index.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "declarativeContent",
        "contextMenus"
    ],
    "homepage_url": "http:\/\/codex10.com",
    "icons": {
        "48": "assets\/icons\/icon-48.png",
        "128": "assets\/icons\/icon-128.png"
    },
    "web_accessible_resources": [
        "js\/blank.js"
    ],
    "manifest_version": 2
}