CSV Viewer by Table Capture

Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file.

CSV Viewer by Table Captureとは何ですか?

CSV Viewer by Table Captureはhttps://georgemike.comによって開発されたChromeの拡張機能で、その主な機能は「Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file.」です。

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

screenshot
screenshot
screenshot
screenshot

CSV Viewer by Table Capture拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        CSV Viewer displays CSV data in a lovely table and helps you copy that data with proper row and column-delimiters so that you can get that data into a spreadsheet of your choice.

As a reminder, make sure to give the extension access to local files if you'd like CSV Viewer to handle CSV files you drop into Chrome.

Last Updated: 2/8/2023                    

拡張機能の基本情報

名前 CSV Viewer by Table Capture CSV Viewer by Table Capture
ID igjpnkigohahllcmmgbeabfkoklalljc
公式URL https://chromewebstore.google.com/detail/csv-viewer-by-table-captu/igjpnkigohahllcmmgbeabfkoklalljc
説明 Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file.
ファイルサイズ 695 KB
インストール数 555
現在のバージョン 1.0.10
最終更新日 2023-02-09
公開日 2022-10-29
評価 5.00/5 合計 1 レビュー
開発者 https://georgemike.com
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://georgemike.com/
ヘルプページのURL https://georgemike.com/
プライバシーポリシーページのURL https://www.georgemike.com/chrome/privacypolicy
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.0.10",
    "name": "CSV Viewer by Table Capture",
    "short_name": "CSV Viewer",
    "description": "Views CSV files in a lovely table and allows you to copy it to the clipboard or download as an Excel file.",
    "homepage_url": "https:\/\/georgemike.com",
    "default_locale": "en",
    "icons": {
        "128": "images\/icon.128.png"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "options_page": "options.html",
    "web_accessible_resources": [
        {
            "resources": [
                "images\/icon.128.png",
                "images\/icon.tablecapture.png",
                "images\/icon.png"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/lib\/Blob.js",
                "js\/lib\/FileSaver.v2.0.2.min.js",
                "js\/lib\/xlsx.full.1.13.0.min.js",
                "js\/lib\/papaparse.min.js",
                "js\/Clipboard.js",
                "js\/Config.js",
                "js\/CSVV.js",
                "js\/ExcelUtil.js",
                "js\/MessageAction.js",
                "js\/Utils.js",
                "js\/content.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "all_frames": false
        }
    ],
    "permissions": [
        "contextMenus",
        "downloads"
    ]
}