Download table as CSV

Download HTML tables in MS Excel style CSV format.

什麼是Download table as CSV?

Download table as CSV是由arktiv開發的Chrome擴展程式,該擴展的主要功能是“Download HTML tables in MS Excel style CSV format.”。

擴展截圖

screenshot
screenshot

下載Download table as CSV擴展crx文件

下載Download table as CSV擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Simple to use! 

Right click on the table, then select 'Download table as CSV' from the context menu.

Alternatively you can click the icon and then click on the table to download

The extension downloads the HTML tables in MS Excel style CSV format. 

Images will be show in the CSV file as the source URL.
Inputs and text-areas will be indicated in the CSV file with a '(i)'

Support for UTF-8 with BOM (Special thanks to mantaroh) - You can toggle this in the extensions popup.

Note: Sometimes special characters, symbols will not look as you might expect, this is not a bug, rather a limitation of the format.

Attempts to follow RFC4180

Source code: https://github.com/arktiv/table-csv-chrome                    

擴展基本資訊

名稱 Download table as CSV Download table as CSV
ID jgeonblahchgiadgojdjilffklaihalj
官方網址 https://chromewebstore.google.com/detail/download-table-as-csv/jgeonblahchgiadgojdjilffklaihalj
簡介 Download HTML tables in MS Excel style CSV format.
檔案大小 8.34 KB
安裝次數 20,000
目前版本 1.6
更新時間 2023-11-27
上架時間 2020-05-30
評分 4.33/5 共 39 次評分
開發者 arktiv
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/arktiv/table-csv-chrome
說明頁面URL https://github.com/arktiv/table-csv-chrome
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Download table as CSV",
    "description": "Download HTML tables in MS Excel style CSV format.",
    "version": "1.6",
    "manifest_version": 2,
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "32": "icons\/32x32.png",
        "64": "icons\/64x64.png",
        "128": "icons\/128x128.png"
    }
}