table-to-spreadsheet

Convert the table element to spreadsheet

table-to-spreadsheetとは何ですか?

table-to-spreadsheetはmoznionによって開発されたChromeの拡張機能で、その主な機能は「Convert the table element to spreadsheet」です。

拡張機能のスクリーンショット

screenshot

table-to-spreadsheet拡張機能のCRXファイルをダウンロード

table-to-spreadsheet拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 table-to-spreadsheet table-to-spreadsheet
ID haidhlbpihfihbjcggmffnmhgiddjcoc
公式URL https://chromewebstore.google.com/detail/table-to-spreadsheet/haidhlbpihfihbjcggmffnmhgiddjcoc
説明 Convert the table element to spreadsheet
ファイルサイズ 105 KB
インストール数 7,268
現在のバージョン 0.0.2
最終更新日 2014-07-22
公開日 2014-07-22
評価 4.00/5 合計 19 レビュー
開発者 moznion
支払い方法 free
拡張機能のウェブサイト https://github.com/moznion/crx-table-to-spreadsheet
ヘルプページのURL https://github.com/moznion/crx-table-to-spreadsheet/issues
対応言語 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"
            ]
        }
    ]
}