CSV Formatter

Format select data with header

CSV Formatterとは何ですか?

CSV Formatterはzoujinheによって開発されたChromeの拡張機能で、その主な機能は「Format select data with header」です。

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

screenshot

CSV Formatter拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        v 0.0.3
+ copy raw logs

v 0.0.1
*** first version, not very intuitive to use ***
How to use: 
- Define CSV headers in options page.
- Select csv text on any webpage.
- Right click on selected text, select "CSV Formatter", apply selected text with one of configured headers.
- Click "CSV Formatter" plugin/extension icon to see formatted CSV showed in tables.                    

拡張機能の基本情報

名前 CSV Formatter CSV Formatter
ID enjmadekbjfjfifodfnjdljccjgpemcg
公式URL https://chromewebstore.google.com/detail/csv-formatter/enjmadekbjfjfifodfnjdljccjgpemcg
説明 Format select data with header
ファイルサイズ 116 KB
インストール数 95
現在のバージョン 0.0.3
最終更新日 2021-08-23
公開日 2021-08-11
開発者 zoujinhe
Eメール [email protected]
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CSV Formatter",
    "description": "Format select data with header",
    "version": "0.0.3",
    "browser_action": {
        "default_popup": "index.html"
    },
    "options_page": "options.html",
    "icons": {
        "16": "logo-small.png",
        "48": "logo-small.png",
        "128": "logo-small.png"
    },
    "permissions": [
        "contextMenus",
        "unlimitedStorage",
        "storage"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    }
}