Table to CSV

Any html table you click on is downloaded in csv format.

What is Table to CSV?

Table to CSV is a Chrome extension developed by kiko, and its main feature is "Any html table you click on is downloaded in csv format.".

Extension Screenshots

screenshot

Download Table to CSV Extension CRX File

Download Table to CSV 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

                        Shift+click on any html table to download in csv format. Works on tables that have inputs. Wraps each column in double quotes and escapes double quotes in table data, so commas and quotes are ok to have in your html column data.                    

Extension Basic Information

Name Table to CSV Table to CSV
ID obbfbcfdflibnmadiigfgkkheoncmkfi
Official URL https://chrome.google.com/webstore/detail/table-to-csv/obbfbcfdflibnmadiigfgkkheoncmkfi
Description Any html table you click on is downloaded in csv format.
File Size 5.68 KB
Installation Count 493
Current Version 1.0.3
Last Updated 2021-08-22
Publish Date 2020-09-29
Rating 5.00/5 Total 1 Ratings
Developer kiko
Email [email protected]
Payment Type free
Privacy Policy Page URL https://rickastleybomb.mediabot.ca/privacy.php
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Table to CSV",
    "description": "Any html table you click on is downloaded in csv format.",
    "version": "1.0.3",
    "icons": {
        "128": "table-icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}