table-to-spreadsheet

Convert the table element to spreadsheet

What is table-to-spreadsheet?

table-to-spreadsheet is a Chrome extension developed by moznion, and its main feature is "Convert the table element to spreadsheet".

Extension Screenshots

screenshot

Download table-to-spreadsheet Extension CRX File

Download table-to-spreadsheet extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name table-to-spreadsheet table-to-spreadsheet
ID haidhlbpihfihbjcggmffnmhgiddjcoc
Official URL https://chromewebstore.google.com/detail/table-to-spreadsheet/haidhlbpihfihbjcggmffnmhgiddjcoc
Description Convert the table element to spreadsheet
File Size 105 KB
Installation Count 7,268
Current Version 0.0.2
Last Updated 2014-07-22
Publish Date 2014-07-22
Rating 4.00/5 Total 19 Ratings
Developer moznion
Payment Type free
Extension Website https://github.com/moznion/crx-table-to-spreadsheet
Help Page URL https://github.com/moznion/crx-table-to-spreadsheet/issues
Supported Languages 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"
            ]
        }
    ]
}