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