Download table as CSV

Download HTML tables in MS Excel style CSV format.

Download table as CSV là gì?

Download table as CSV là một tiện ích mở rộng Chrome được phát triển bởi arktiv, và tính năng chính của nó là "Download HTML tables in MS Excel style CSV format.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Download table as CSV

Tải xuống các tệp mở rộng Download table as CSV dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Download table as CSV Download table as CSV
ID jgeonblahchgiadgojdjilffklaihalj
URL Chính Thức https://chromewebstore.google.com/detail/download-table-as-csv/jgeonblahchgiadgojdjilffklaihalj
Mô tả Download HTML tables in MS Excel style CSV format.
Kích Thước Tệp 8.34 KB
Số Lần Cài Đặt 20,000
Phiên Bản Hiện Tại 1.6
Cập Nhật Lần Cuối 2023-11-27
Ngày Phát Hành 2020-05-30
Đánh Giá 4.33/5 Tổng số 39 Đánh Giá
Nhà Phát Triển arktiv
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/arktiv/table-csv-chrome
URL Trang Trợ Giúp https://github.com/arktiv/table-csv-chrome
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}