Table to CSV/JSON

Converts HTML tables in the page into csv or json

What is Table to CSV/JSON?

Table to CSV/JSON is a Chrome extension developed by http://codex10.com, and its main feature is "Converts HTML tables in the page into csv or json".

Extension Screenshots

screenshot
screenshot

Download Table to CSV/JSON Extension CRX File

Download Table to CSV/JSON extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Note the JSON is a simple Array> format.                    

Extension Basic Information

Name Table to CSV/JSON Table to CSV/JSON
ID lcmljkenflafolafllblkbchomcnaefi
Official URL https://chrome.google.com/webstore/detail/table-to-csvjson/lcmljkenflafolafllblkbchomcnaefi
Description Converts HTML tables in the page into csv or json
File Size 25.68 KB
Installation Count 1,000
Current Version 1.0.2
Last Updated 2015-07-05
Publish Date 2015-07-05
Rating 2.82/5 Total 11 Ratings
Developer http://codex10.com
Payment Type free
Extension Website http://codex10.com
Supported Languages 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
}