Table to CSV

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

什么是Table to CSV?

Table to CSV是由kiko开发的Chrome扩展程序,该扩展的主要功能是“Any html table you click on is downloaded in csv format.”。

扩展截图

screenshot

下载Table to CSV扩展crx文件

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

扩展使用说明

                        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.                    

扩展基本信息

名称 Table to CSV Table to CSV
ID obbfbcfdflibnmadiigfgkkheoncmkfi
官方URL https://chrome.google.com/webstore/detail/table-to-csv/obbfbcfdflibnmadiigfgkkheoncmkfi
简介 Any html table you click on is downloaded in csv format.
文件大小 5.68 KB
安装次数 493
当前版本 1.0.3
更新时间 2021-08-22
上架时间 2020-09-29
评分 5.00/5 共1次评分
开发者 kiko
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://rickastleybomb.mediabot.ca/privacy.php
支持的语言 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"
            ]
        }
    ]
}