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
官方網址 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
}