table-to-spreadsheet

Convert the table element to spreadsheet

table-to-spreadsheet là gì?

table-to-spreadsheet là một tiện ích mở rộng Chrome được phát triển bởi moznion, và tính năng chính của nó là "Convert the table element to spreadsheet".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng table-to-spreadsheet

Tải xuống các tệp mở rộng table-to-spreadsheet 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

                        Provide the CSV or XLSX that is converted from the table element by context menu.                    

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

Tên table-to-spreadsheet table-to-spreadsheet
ID haidhlbpihfihbjcggmffnmhgiddjcoc
URL Chính Thức https://chromewebstore.google.com/detail/table-to-spreadsheet/haidhlbpihfihbjcggmffnmhgiddjcoc
Mô tả Convert the table element to spreadsheet
Kích Thước Tệp 105 KB
Số Lần Cài Đặt 7,268
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2014-07-22
Ngày Phát Hành 2014-07-22
Đánh Giá 4.00/5 Tổng số 19 Đánh Giá
Nhà Phát Triển moznion
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/moznion/crx-table-to-spreadsheet
URL Trang Trợ Giúp https://github.com/moznion/crx-table-to-spreadsheet/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "table-to-spreadsheet",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "Convert the table element to spreadsheet",
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/main.js",
                "js\/XLSXSheet.js",
                "js\/CSVSheet.js",
                "js\/Converter.js",
                "vendor\/jquery.js",
                "vendor\/lodash.compat.js",
                "vendor\/xlsx.core.min.js",
                "vendor\/Blob.min.js",
                "vendor\/FileSaver.min.js",
                "vendor\/csv.js"
            ]
        }
    ]
}